We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The dev.sh script in the identity-service project doesn't work correctly on Mac systems due to the use of sam.cmd instead of sam.
dev.sh
sam.cmd
sam
The dev.sh script should run successfully on both Windows and Mac systems, using the appropriate SAM CLI command for each operating system.
The script fails to execute properly on Mac systems because it uses sam.cmd, which is specific to Windows.
sh scripts/dev.sh
The scripts/dev.sh file currently contains:
scripts/dev.sh
go mod tidy sam.cmd build sam.cmd local start-api --env-vars env.json
This works for Windows users but not for Mac users. We need to modify the script to work on both operating systems.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue Description
The
dev.sh
script in the identity-service project doesn't work correctly on Mac systems due to the use ofsam.cmd
instead ofsam
.Expected Behavior
The
dev.sh
script should run successfully on both Windows and Mac systems, using the appropriate SAM CLI command for each operating system.Current Behavior
The script fails to execute properly on Mac systems because it uses
sam.cmd
, which is specific to Windows.Reproducibility
Steps to Reproduce
sh scripts/dev.sh
on a Mac systemSeverity/Priority
Additional Information
The
scripts/dev.sh
file currently contains:go mod tidy sam.cmd build sam.cmd local start-api --env-vars env.json
This works for Windows users but not for Mac users. We need to modify the script to work on both operating systems.
Checklist
The text was updated successfully, but these errors were encountered: