Files
atom/Atom-Linux/atom
Kevin Sawicki 22ab010d10 Support opening file specified as argument
Moves build to out/ folder and use shell script
to bootstrap loading of libraries
2012-08-01 09:56:39 -07:00

12 lines
157 B
Bash
Executable File

#!/bin/sh
case $0 in
/* )
root=${0%atom}
;;
* )
root=`pwd`/${0%atom}
;;
esac
export LD_LIBRARY_PATH=$root'lib':$LD_LIBRARY_PATH
$root'out/atom' $@