We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2bfcab commit a03e8c4Copy full SHA for a03e8c4
1 file changed
build.sh
@@ -8,10 +8,11 @@ EMAIL="${4}"
8
TOKEN="${5}"
9
10
# Apps.
11
+date="$( command -v date )"
12
debuild="$( command -v debuild )"
-mv="$( command -v mv )"
13
git="$( command -v git )"
14
-date="$( command -v date )"
+mv="$( command -v mv )"
15
+rm="$( command -v rm )"
16
17
# Dirs.
18
d_src="/root/git/repo_src"
@@ -42,6 +43,7 @@ build() {
42
43
44
move() {
45
for i in _service README.md LICENSE *.tar.* *.dsc *.build *.buildinfo *.changes; do
46
+ ${rm} -f "${d_dst}/${i}"
47
${mv} "${i}" "${d_dst}" || exit 1
48
done
49
}
0 commit comments