Skip to content

Commit

Permalink
[MAC SIGN] Use absolute path for source txt file
Browse files Browse the repository at this point in the history
  • Loading branch information
RoiArthurB committed Apr 26, 2022
1 parent 8611c6b commit 0d9973e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions travis/mac-sign.sh
Expand Up @@ -22,7 +22,7 @@ function signInJar(){

fi

grep "^\[$f" needToSign.txt | cut -d " " -f 2 > nestedJar.txt
grep "^\[$f" $needToSignPath | cut -d " " -f 2 > nestedJar.txt
if [[ -s "nestedJar.txt" ]]; then
while read nJ
do
Expand All @@ -39,7 +39,9 @@ function signInJar(){
fi
}

grep "^./" needToSign.txt > jar.txt
needToSignPath=$(pwd)/needToSign.txt

grep "^./" $needToSignPath > jar.txt

# Sign .jar files
while read j
Expand Down

0 comments on commit 0d9973e

Please sign in to comment.