Skip to content

Commit f6d5a39

Browse files
committed
[Update] Auto zip
1 parent bdb9246 commit f6d5a39

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

zip.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
dpkg -s zip >/dev/null 2>&1
3+
if [ ! $? -eq 0 ]; then
4+
echo "zip をインストールしてください"
5+
echo;
6+
echo "sudo apt install zip"
7+
else
8+
zip ../replace-font-chrome.zip -r * -x .git README.md LICENSE
9+
fi
10+

0 commit comments

Comments
 (0)