-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
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
ssc-setup fixes #308
ssc-setup fixes #308
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to document all the flags like --only-env
, etc. It's hard to keep all this stuff in a head
we'll come back and do a complete pass on docs for the scripts 🙏🏼 |
* chore: new release * chore(npm): @socketsupply/socket-linux-x64@0.0.7 * chore(npm): @socketsupply/socket-win32-x64 * chore(npm): bump top-level package version * publish-npm-modules: disable checks when --only-top-level * publish-npm-modules: disable android checks for linux-aarch64 * install.sh: disable BUILD_ANDROID for linux-aarch64 --------- Co-authored-by: Sergey Rubanov <chi187@gmail.com> Co-authored-by: Joseph Werle <joseph.werle@gmail.com> Co-authored-by: heapwolf <paolo@socketsupply.co>
…copied SOCKET_API_HOME
'functions.sh' leaks variables into sourced files like $root causing unexpected behaviour
@@ -114,6 +114,10 @@ String getSocketHome (bool verbose) { | |||
static String LOCALAPPDATA = getEnv("LOCALAPPDATA"); | |||
static String SOCKET_HOME = getEnv("SOCKET_HOME"); | |||
static String HOME = getEnv("HOME"); | |||
static const bool SSC_DEBUG = ( | |||
getEnv("SSC_DEBUG").size() > 0 || |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice. I think we also need to look at differentiating between debug output and debug builds in install.sh
and install.ps1
.
This PR improves
ssc setup
in various ways including the output during the FTE and setup to give users more feedback about what is going on aligning the output style with the rest of build scripts.