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 27cae22 commit a65e46dCopy full SHA for a65e46d
1 file changed
build.sh
@@ -44,14 +44,14 @@ build() {
44
move() {
45
for i in _service README.md LICENSE *.tar.* *.dsc *.build *.buildinfo *.changes; do
46
${rm} -fv "${d_dst}/${i}"
47
- ${mv} -fv "${d_src}/${i}" "${d_dst}/" || exit 1
+ ${mv} -fv "${d_src}/${i}" "${d_dst}" || exit 1
48
done
49
}
50
51
push() {
52
ts="$( _timestamp )"
53
54
- pushd "${d_dst}/" || exit 1
+ pushd "${d_dst}" || exit 1
55
${git} add . && ${git} commit -a -m "BUILD: ${ts}" && ${git} push
56
57
0 commit comments