update build script
This commit is contained in:
parent
1f489866a6
commit
9ada4948cb
11
README.md
11
README.md
@ -1,6 +1,13 @@
|
|||||||
YTCget
|
YTCget — Show YouTube video cover
|
||||||
------
|
=================================
|
||||||
![Preview](preview.png)
|
![Preview](preview.png)
|
||||||
|
|
||||||
**Thanks:**
|
**Thanks:**
|
||||||
+ @takien: for [youtubeID.js](https://gist.github.com/takien/4077195) script.
|
+ @takien: for [youtubeID.js](https://gist.github.com/takien/4077195) script.
|
||||||
|
|
||||||
|
Build
|
||||||
|
-----
|
||||||
|
|
||||||
|
**Requirements:**
|
||||||
|
|
||||||
|
* [minify-html](https://github.com/wilsonzlin/minify-html/)
|
||||||
|
12
make_dist.sh
12
make_dist.sh
@ -1,8 +1,12 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
|
|
||||||
echo -e "Making \033[0;31mYTCget\033[0m dist..."
|
echo -e "Making \033[0;31mYTCget\033[0m dist..."
|
||||||
|
|
||||||
if [ -d "./dist" ]; then
|
if [ ! -d "./dist" ]; then
|
||||||
|
echo -e "Make \033[0;31m./dist/\033[0m directory."
|
||||||
|
mkdir "./dist/"
|
||||||
|
fi
|
||||||
|
|
||||||
echo -en "Cleaning \033[0;31m./dist/\033[0m directory..."
|
echo -en "Cleaning \033[0;31m./dist/\033[0m directory..."
|
||||||
rm -rf "./dist/*"
|
rm -rf "./dist/*"
|
||||||
echo " Complete!"
|
echo " Complete!"
|
||||||
@ -28,7 +32,3 @@ if [ -d "./dist" ]; then
|
|||||||
echo -en "Making \033[0;31mytcg-$GIT_COMMIT_HASH.tar.xz\033[0m file..."
|
echo -en "Making \033[0;31mytcg-$GIT_COMMIT_HASH.tar.xz\033[0m file..."
|
||||||
tar -cJf "ytcg-$GIT_COMMIT_HASH.tar.xz" ./dist/*
|
tar -cJf "ytcg-$GIT_COMMIT_HASH.tar.xz" ./dist/*
|
||||||
echo " Complete!"
|
echo " Complete!"
|
||||||
else
|
|
||||||
echo -e "Make \033[0;31m./dist/\033[0m directory."
|
|
||||||
mkdir "./dist/"
|
|
||||||
fi
|
|
||||||
|
Loading…
Reference in New Issue
Block a user