Skip to content

Commit

Permalink
list appimage build results
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianschroeter committed Mar 15, 2017
1 parent 8bb903f commit 3ab3ff0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions osc/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,11 @@ def get_built_files(pacdir, buildtype):
'-name', '*.snap'],
stdout=subprocess.PIPE).stdout.read().strip()
s_built = ''
elif buildtype == 'appimage':
b_built = subprocess.Popen(['find', os.path.join(pacdir, 'OTHER'),
'-name', '*.AppImage'],
stdout=subprocess.PIPE).stdout.read().strip()
s_built = ''
else:
print('WARNING: Unknown package type \'%s\'.' % buildtype, file=sys.stderr)
b_built = ''
Expand Down

0 comments on commit 3ab3ff0

Please sign in to comment.