diff options
author | login <login@tilde.team> | 2019-11-15 20:36:28 -0500 |
---|---|---|
committer | login <login@tilde.team> | 2019-11-15 20:36:28 -0500 |
commit | 8573e74a01824341c54d0fdd7e5c1e70a0a7a323 (patch) | |
tree | 40e919f90282453f865a632788d5092223427597 | |
parent | 55bfe1fb8992c450d97c97a109563a8b49be7744 (diff) | |
download | tcoin-8573e74a01824341c54d0fdd7e5c1e70a0a7a323.tar.gz |
Bugfix in ntcoin to fix error in compile_pcoin
ntcoin had an error in the way it created compile_pcoin. compile_pcoin had a missing \ at the end of the line (for line continuation). This bug has now been fixed.
-rwxr-xr-x | ntcoin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ntcoin b/ntcoin index 97540f5..c8ab122 100755 --- a/ntcoin +++ b/ntcoin @@ -202,7 +202,7 @@ else /bin/echo '#!/bin/bash (/usr/bin/g++ -I"'`/usr/bin/realpath -s $1`'/tcoin/bin" "'`/bin/pwd`'/pcoin.cpp" -o "'`/usr/bin/realpath -s $1`'/tcoin/bin/pcoin" -std=c++11) \ && (/bin/chmod 550 "'`/usr/bin/realpath -s $1`'/tcoin/bin/pcoin") \ -&& (/bin/chmod u+s "'`/usr/bin/realpath -s $1`'/tcoin/bin/pcoin") +&& (/bin/chmod u+s "'`/usr/bin/realpath -s $1`'/tcoin/bin/pcoin") \ && (/bin/chmod u+w "'`/usr/bin/realpath -s $2`'/pcoin") \ && (/bin/cp "'`/usr/bin/realpath -s $1`'/tcoin/bin/pcoin" "'`/usr/bin/realpath -s $2`'/pcoin") \ && (/bin/chmod 550 "'`/usr/bin/realpath -s $2`'/pcoin") \ |