-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/koalaman/shellcheck into …
…mrshu/pushd-popd-like-cd Signed-off-by: mr.Shu <[email protected]>
- Loading branch information
Showing
7 changed files
with
400 additions
and
165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/bin/bash | ||
# This script packages up Travis compiled binaries | ||
set -ex | ||
shopt -s nullglob | ||
cd deploy | ||
|
||
cp ../LICENSE LICENSE.txt | ||
sed -e $'s/$/\r/' > README.txt << END | ||
This is a precompiled ShellCheck binary. | ||
http://www.shellcheck.net/ | ||
ShellCheck is a static analysis tool for shell scripts. | ||
It's licensed under the GNU General Public License v3.0. | ||
Information and source code is available on the website. | ||
This binary was compiled on $(date -u). | ||
====== Latest commits ====== | ||
$(git log -n 3) | ||
END | ||
|
||
for file in ./*.exe | ||
do | ||
zip "${file%.*}.zip" README.txt LICENSE.txt "$file" | ||
done | ||
|
||
for file in ./* | ||
do | ||
sha512sum "$file" > "$file.sha512sum" | ||
done | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.