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/smcron | |
parent | 044e2db3b1304062ac7f9ea3b4958e05d9f28a91 (diff) | |
download | steuermann-5651d5c9725fd2ef2f292a9500c177318cbf20ca.tar.gz |
Improve script portability
Diffstat (limited to 'scripts/smcron')
-rw-r--r-- | scripts/smcron | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/scripts/smcron b/scripts/smcron index 25a43b0..291e7a6 100644 --- a/scripts/smcron +++ b/scripts/smcron @@ -1,7 +1,6 @@ -#! python +#!/usr/bin/env python import sys -STEUERMANN_DIR_HERE -sys.path.insert(0, addpath) - import steuermann.run_cron as run_cron + + run_cron.main() |