Skip to content

Commit

Permalink
Added packaging script
Browse files Browse the repository at this point in the history
  • Loading branch information
nurupo committed Mar 7, 2016
1 parent e39162f commit 8c06bf3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*
!.gitignore
!zip-it.sh
9 changes: 9 additions & 0 deletions build/zip-it.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/usr/bin/env bash

# zips Windows plugin binaries built by Docker to be uploaded on GitHub

rm vlc-*-win.zip

find ./*/ -type f | while read -r line; do
zip -j vlc-${line:2:5}-${line:8:2}bit-win.zip $line
done

0 comments on commit 8c06bf3

Please sign in to comment.