mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-02-12 18:00:39 -05:00
15 lines
327 B
Bash
Executable File
15 lines
327 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
echo "Enter the ids of the challenges you wish to test (separated by commas) and hit enter."
|
|
read -r input
|
|
|
|
|
|
IFS=',' challengeIDS=($input)
|
|
|
|
for challengeID in "${challengeIDS[@]}";
|
|
do
|
|
challengeID="$(tr -d ' ' <<< "$challengeID")"
|
|
FCC_CHALLENGE_ID=$challengeID pnpm turbo -F=@freecodecamp/curriculum test
|
|
done
|