You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser.add_argument("-i", "--install", help="Installs pisync in the cronjobs, ran from the directory you're running this command from", action="store_true")
args = parser.parse_args()
if args.install:
print "Running in install mode"
os.system("crontab -l > cronjob")
os.system('echo "* * * * * cd $PWD; ptyhon main.py run; cd -" >> cronjob')