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
{{ message }}
This repository was archived by the owner on May 26, 2022. It is now read-only.
The build npm script for the api application errors on Windows due to this command:
shx cp .env build 2>/dev/null || :
specifically 2>/dev/null || : - this is used to pipe any error in the case that .env does not exist to dev/null and also not return a non-zero exit code.
This should be changed to something that works cross platform for conditional copy (check if exists, etc)
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The build npm script for the api application errors on Windows due to this command:
specifically
2>/dev/null || :
- this is used to pipe any error in the case that.env
does not exist to dev/null and also not return a non-zero exit code.This should be changed to something that works cross platform for conditional copy (check if exists, etc)
The text was updated successfully, but these errors were encountered: