From 62418185b148dbd475728358a137d24bd392f4b0 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Mon, 30 Jul 2018 01:20:04 -0400 Subject: [PATCH] compile script compiles from directory of file --- .scripts/compiler | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.scripts/compiler b/.scripts/compiler index 73ce5bc..919b428 100755 --- a/.scripts/compiler +++ b/.scripts/compiler @@ -9,9 +9,12 @@ # config.h files: (For suckless utils) recompiles and installs program. # all others: run `sent` to show a presentation +oridir=$(pwd) + file=$(readlink -f "$1") dir=$(dirname "$file") base="${file%.*}" +cd $dir textype() { \ command="pdflatex" @@ -30,3 +33,4 @@ case "$file" in *config.h) make && sudo make install ;; *) sent "$file" 2>/dev/null & ;; esac +cd $oridir