You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a trick to pasting code into the super prompt box and getting it to appear in the provider prompts?
Here's the code giving me trouble:
#!/bin/bash
# Base alias for the orgs
BASE_ALIAS="TATSPR24-"
BASE_NAME="ENABLE"
# Loop over the orgs
for i in $(seq -f "%02g" 1 2)
do
# Create the org alias
ORG_ALIAS="${BASE_ALIAS}${i}"
ORG_NAME="${BASE_NAME}${i}"
sfdx force:org:status --sandboxname $ORG_NAME -a $ORG_ALIAS -u TATSPR24 -w 2
done
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Is there a trick to pasting code into the super prompt box and getting it to appear in the provider prompts?
Here's the code giving me trouble:
I can paste sections in, but not the whole thing.
Beta Was this translation helpful? Give feedback.
All reactions