-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add script aliases with deprecation warnings
- Loading branch information
1 parent
8f34d07
commit 4baff66
Showing
6 changed files
with
25 additions
and
21 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/bash | ||
RED="\033[0;31m" | ||
NC="\033[0m" | ||
printf "${RED}WARNING: startTestingEnv is DEPRECATED! Use startTestEnv instead.${NC}\n" >&2 | ||
./startTestEnv "$@" # Pass all arguments |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/bash | ||
RED="\033[0;31m" | ||
NC="\033[0m" | ||
printf "${RED}WARNING: cleanTestEnvCicd is DEPRECATED! Use cleanTestEnv --cicd instead.${NC}\n" >&2 | ||
./utils/cleanTestEnv --cicd "$@" # Pass all arguments |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/bash | ||
RED="\033[0;31m" | ||
NC="\033[0m" | ||
printf "${RED}WARNING: cleanTestEnvLocal is DEPRECATED! Use cleanTestEnv instead.${NC}\n" >&2 | ||
./utils/cleanTestEnv --local "$@" # Pass all arguments |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/bash | ||
RED="\033[0;31m" | ||
NC="\033[0m" | ||
printf "${RED}WARNING: setupTestEnvCicd is DEPRECATED! Use setupTestEnv --cicd instead.${NC}\n" >&2 | ||
./utils/setupTestEnv --cicd "$@" # Pass all arguments |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/bash | ||
RED="\033[0;31m" | ||
NC="\033[0m" | ||
printf "${RED}WARNING: setupTestEnvLocal is DEPRECATED! Use setupTestEnv instead.${NC}\n" >&2 | ||
./utils/setupTestEnv --local "$@" # Pass all arguments |