Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
n-ando committed Oct 20, 2024
1 parent 3f40cc0 commit 0154da1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ jobs:
- name: Build project
run: |
cd /opt/homebrew/Library/Taps/openrtm/homebrew-omniorb
bash build.sh
ls -al
Expand Down
10 changes: 5 additions & 5 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ bottle()

rename()
{
org_name=`grep Bottling bottle.txt| awk '{sub("gz\.\.\.","gz",$3);print $3;}'`
new_name=`grep Bottling bottle.txt| awk '{sub("--","-",$3);sub("gz\.\.\.","gz",$3);print $3;}'`
sha_name=`echo $new_name | awk '{sub("tar.gz","sha256");print $1;}'`
org_name=`grep Bottling bottle.txt| sed -n 's/.*\(omni.*\.gz\).*/\1/p'`
new_name=`echo $org_name | sed 's/--/-/'`
sha_name=`echo $new_name | sed 's/tar.gz/sha256/'`
mv $org_name $new_name
mv bottle.txt $sha_name
}
Expand Down Expand Up @@ -68,8 +68,8 @@ build()
# main
#-----------
echo "Installing openssl@3"
brew install openssl@3
brew link openssl@3
#brew install openssl@3
#brew link openssl@3

echo "Bottling the forllowing packages"
cleanup
Expand Down

0 comments on commit 0154da1

Please sign in to comment.