Skip to content

Commit

Permalink
Fix tar ball file extension
Browse files Browse the repository at this point in the history
   - Not sure why this went wrong or why this fixes it :(
  • Loading branch information
AnotherJohnH committed May 17, 2017
1 parent cb11a89 commit eb93aba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ env.Append(CPPPATH = 'include')

# Builders
exe = env.Program(binary, source)
env.Tar(binary+'-'+env['target']+'-'+env['machine']+'-'+env['version'],
env.Tar(binary+'-'+env['target']+'-'+env['machine']+'-'+env['version']+'.tgz',
[exe, 'LICENSE', 'zif.cfg', 'tpip'])

0 comments on commit eb93aba

Please sign in to comment.