-
-
Notifications
You must be signed in to change notification settings - Fork 344
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
6 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
#!/bin/bash | ||
|
||
if "$GITHUB_ACTIONS"=="1" ( | ||
if "%GITHUB_ACTIONS%"=="true" ( | ||
echo ::warning title=Mambaforge is now deprecated!::Future Miniforge releases will NOT build Mambaforge installers. We advise you switch to Miniforge at your earliest convenience. | ||
) | ||
else ( | ||
msg "%sessionname%" Mambaforge is now deprecated! Future Miniforge releases will NOT build Mambaforge installers. We advise you switch to Miniforge at your earliest convenience. | ||
timeout /t 30 /nobreak | ||
) | ||
echo Sleeping for 30s... | ||
powershell -nop -c "& {sleep 30}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
#!/bin/bash | ||
|
||
if [[ "$GITHUB_ACTIONS" == "1" ]]; then | ||
if [[ "$GITHUB_ACTIONS" == "true" ]]; then | ||
echo "::warning title=Mambaforge is now deprecated!::Future Miniforge releases will NOT build Mambaforge installers. We advise you switch to Miniforge at your earliest convenience." | ||
else | ||
echo "!!!!!! Mambaforge is now deprecated !!!!!" | ||
echo "Future Miniforge releases will NOT build Mambaforge installers." | ||
echo "We advise you switch to Miniforge at your earliest convenience." | ||
echo "Sleeping for 30s..." | ||
sleep 30 | ||
fi | ||
echo "Sleeping for 30s..." | ||
sleep 30 |