Files
atom/Atom-Linux/atom
Kevin Sawicki b0489810cc Add install target to Makefile
Install atom into /usr/local/atom and adds a 
symlink for /usr/local/bin/atom
2012-08-01 10:00:39 -07:00

12 lines
173 B
Bash
Executable File

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