~verzegnassi-stefano/+junk/get-click-deps

« back to all changes in this revision

Viewing changes to get-click-deps

  • Committer: Stefano Verzegnassi
  • Date: 2015-09-04 14:10:36 UTC
  • Revision ID: stefano92.100@gmail.com-20150904141036-dqzfn3m1y2hchxpr
Removed untar() function, not longer used

Show diffs side-by-side

added added

removed removed

Lines of Context:
216
216
    os.system('rm %s %s' % (flag, path))
217
217
 
218
218
 
219
 
def untar(sourcepath, destpath):
220
 
    os.system('tar -C %s %s' % (destpath, sourcepath))
221
 
 
222
 
 
223
219
def extract_deb_package(deb_path, destpath):
224
220
    os.system('dpkg-deb -x %s %s' % (deb_path, destpath))
225
221