Permalink
Browse files

Create the oilc symlink on installation.

  • Loading branch information...
Andy Chu
Andy Chu committed Feb 24, 2018
1 parent 6fb35c8 commit 58f6ce13829e8d02844320b08d9f83b8ccac34ba
Showing with 5 additions and 3 deletions.
  1. +5 −3 install
View
@@ -34,9 +34,11 @@ main() {
fi
cd $PREFIX/bin
if ! ln -s -f $exec_filename osh; then # -f to overwrite
die "Couldn't create osh symlink"
fi
for link in osh oilc; do
if ! ln -s -f $exec_filename $link; then # -f to overwrite
die "Couldn't create $link symlink"
fi
done
}
main "$@"

0 comments on commit 58f6ce1

Please sign in to comment.