Sha256: 9a16f4504ea383513eba0bcbb5b0b4d93daeebbfd82bb9640bc51a85cc2b21a6

Contents?: true

Size: 578 Bytes

Versions: 8

Compression:

Stored size: 578 Bytes

Contents

#!/bin/bash

REALPATH=`readlink -f $0`

APPPATH="${REALPATH%/*}"
if [ "$APPPATH" = "shoes" ]; then
  APPPATH="."
fi
if [ "$APPPATH" = "." ]; then
  APPPATH=`pwd`
fi

# makeself changes the directory to /tmp/selfgzNNNNN.  if we're in
# an extracted archive, change back to the directory where we launched.
if [ `pwd | awk '{ sub(/[0-9]+/, ""); print }'` = "/tmp/selfgz" ]; then
  # fix the symlink, this is actually a bug in the minitar lib
  rm -f libruby.so.1.8
  ln -s libruby.so libruby.so.1.8
  cd "$OLDPWD"
fi
LD_LIBRARY_PATH=$APPPATH $APPPATH/shoes $@

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
shoesgem-0.1514.0 shoes/shoes
shoesgem-0.1480.0 shoes/shoes
shoesgem-0.1469.0 shoes/shoes
shoesgem-0.1430.0 shoes/shoes
shoesgem-0.1429.0 shoes/shoes
shoesgem-0.1428.0 shoes/shoes
shoesgem-0.1426.0 shoes/shoes
shoesgem-0.1424.0 shoes/shoes