diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-07-03 12:58:11 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-07-03 12:58:11 -0400 |
commit | 5651d5c9725fd2ef2f292a9500c177318cbf20ca (patch) | |
tree | 0b3796438e9c3b9626cdb0a6f7b75305ea286c2f /scripts/smc | |
parent | 044e2db3b1304062ac7f9ea3b4958e05d9f28a91 (diff) | |
download | steuermann-5651d5c9725fd2ef2f292a9500c177318cbf20ca.tar.gz |
Improve script portability
Diffstat (limited to 'scripts/smc')
-rw-r--r-- | scripts/smc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/scripts/smc b/scripts/smc index 0fc03f7..462a028 100644 --- a/scripts/smc +++ b/scripts/smc @@ -1,7 +1,6 @@ -#! python +#!/usr/bin/env python import sys -STEUERMANN_DIR_HERE -sys.path.insert(0, addpath) - import steuermann.run_all as run_all + + run_all.main() |