Skip to content

Commit bad3b40

Browse files
committed
fix
1 parent 25529a3 commit bad3b40

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/temp.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,12 @@ jobs:
1111
run: |
1212
brew install grep
1313
brew uninstall --ignore-dependencies [email protected]
14-
echo "Fetch for arm64 -----"
15-
FETCH=$(brew fetch --force --bottle-tag=arm64_monterey [email protected])
16-
echo "Fetched for arm64 -----"
17-
echo "$FETCH"
1814
echo "File for arm64 -----"
1915
FILE=$(brew fetch --force --bottle-tag=arm64_monterey [email protected] | ggrep -oP '(?<=Downloaded to\: ).*[email protected]_monterey.bottle.1.tar.gz')
2016
echo "Filed for arm64 -----"
2117
echo "$FILE"
2218
echo "Installing for arm64 -----"
23-
brew install "$FILE"
19+
LOC=$(brew --cache -s [email protected])
20+
echo "$LOC"
21+
mv "$FILE" "$LOC"
22+
brew install [email protected]

0 commit comments

Comments
 (0)