Sha256: 72880022137e09bb18753d3299f7ec6e7b63f3d90c09b22e3262a9cba7054249
Contents?: true
Size: 685 Bytes
Versions: 7
Compression:
Stored size: 685 Bytes
Contents
# cd back to the directory where the AppImage was launched from. AppRun changes # the working directory so as to work with binaries that have /usr hard-coded; # we don't. cd $OWD # Set GEM_PATH to where we installed gems in the AppImage. export GEM_PATH=$APPDIR/var/lib/gems/2.3.0 # Get path of sequenceserver executable inside AppImage. Path of bare commands # (here ruby) are resolved within AppImage's context. Use of Gem.bin_path lets # us avoid hardcoding version number. The file returned is bin/sequenceserver # and not the shim that rubygem creates. executable=$(ruby -e 'puts Gem.bin_path("sequenceserver", "sequenceserver")') # Run sequenceserver. ruby ${executable} "$@"
Version data entries
7 entries across 7 versions & 1 rubygems