Rank 2: Process
I was solving an issue of sdk-for-cli repo https://github.com/appwrite/sdk-for-cli.
I installed cli after cloning the repo with the commands
sh install.sh```
the installer downloads its binary from the official file```downloadBinary() { echo "[2/4] Downloading executable for $OS ($ARCH) ..."
GITHUB_LATEST_VERSION="2.0.2" GITHUB_FILE="appwrite-cli-${OS}-${ARCH}" GITHUB_URL="https://github.com/$GITHUB_REPOSITORY_NAME/releases/download/$GITHUB_LATEST_VERSION/$GITHUB_FILE"
printf "${GREEN}🚦 Downloading Appwrite CLI $GITHUB_LATEST_VERSION ... ${NC}\n" res=$(curl -s $GITHUB_URL) if [[ "$res" == *"Not Found"* ]]; then printf "${RED}❌ Couldn't find executable for $OS ($ARCH). Please contact the Appwrite team ${NC} \n" exit 1 fi curl -L -o $APPWRITE_TEMP_NAME $GITHUB_URL printSuccess}```
After making changes, how can I test in local?