-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScript.sh
34 lines (34 loc) · 873 Bytes
/
Script.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/bash
echo "Gonna build a rocket ship!"
firstline=$(head -n 1 source/changelog.md)
read -a splitfirstline <<< $firstline
version=${splitfirstline[1]}
echo 'The build version is' $version
echo 'Enter y to continue, n to exit'
read versioncontinue
if [ $versioncontinue == 'y' ]
then
echo 'OK'
for filename in source/*
do
if [ $filename != source/secretinfo.md ]
then echo $filename 'is being copied'
cp $filename build/
else echo $filename 'is not begin copied'
fi
done
cd build/
echo 'Build version $version contains'
ls
cd ..
echo 'make git update?'
read yn
if [ $yn == 'y']
then git add .
git commit -m 'Updating to $version'
git push
else echo 'OK, no version control for you, living dangerously'
fi
else
echo 'Come back when you grow up, kid'
fi