Browse Source

minimal additions

jmelesky 6 years ago
parent
commit
b4d3a9d5bc
1 changed files with 12 additions and 4 deletions
  1. 12 4
      punt

+ 12 - 4
punt

@@ -10,22 +10,30 @@ import argparse
 
 
 wine = '/usr/bin/wine'
-bottledir = Path(Path.home(), '.punt/bottles')
+
+puntdir = Path(Path.home(), '.punt')
+bottledir = Path(puntdir, 'bottles')
 bottledir.mkdir(parents=True, exist_ok=True)
 
 
+
+
 # minimum start:
 #
 #   $ punt install bottle bleh.exe
 #
 
 
-def run(bottle, exe):
+def run(bottle, exe, args=[]):
     newdir = bottledir / bottle
     newenv = deepcopy(environ)
     newenv.update({'WINEPREFIX': str(newdir)})
-    check_call([wine, exe], env=newenv)
+    check_call([wine, exe] + args, env=newenv)
+
 
+def rm(bottle):
+    # shutil.rmtree
+    pass
 
 
 
@@ -56,7 +64,7 @@ if __name__ == '__main__':
 
     args = parser.parse_args()
 
-    if 'arg' in var(args):
+    if 'arg' in args:
         run(args.bottle, args.app, [ x.lstrip() for x in args.arg])
     else:
         run(args.bottle, args.app, [])