mirror of
https://github.com/atom/atom.git
synced 2026-01-24 06:18:03 -05:00
12 lines
157 B
Bash
Executable File
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' $@
|