-
Notifications
You must be signed in to change notification settings - Fork 250
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
Add setup #286
Add setup #286
Conversation
- Break into base_setup and add_setup so that additional items can be installed later - Changed MY_DIR to more descriptive WORKSTATION_SETUP_HOME - Use up-to-date 'brew install --cask' syntax
brew install --cask zoomus | ||
|
||
source ${WORKSTATION_SETUP_HOME}/scripts/common/zprofile-setup.sh | ||
source ${WORKSTATION_SETUP_HOME}/scripts/common/asdf.sh |
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.
Could you remove zprofile-setup.sh and asdf.sh? Neither of these are in your PR nor our current repo.
source ${WORKSTATION_SETUP_HOME}/scripts/common/unix.sh | ||
source ${WORKSTATION_SETUP_HOME}/scripts/common/configuration-osx.sh | ||
source ${WORKSTATION_SETUP_HOME}/scripts/common/configurations.sh | ||
source ${WORKSTATION_SETUP_HOME}/scripts/common/redis.sh |
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.
Could you remove redis.sh? We don't have this file either.
@@ -1,4 +1,4 @@ | |||
echo | |||
echo "Installing dotnet requirements" | |||
brew install --cask dotnet dotnet-sdk | |||
source ${MY_DIR}/scripts/opt-in/dotnet-tools.sh | |||
source ${WORKSTATION_SETUP_HOME}/scripts/opt-in/dotnet-tools.sh |
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.
👍 for this name change.
We are declaring PR bankruptcy as per #295. Please review recent changes and direction and resubmit if needed. Thank you! |
We customized workstation-setup for use at my new company and found that we wanted to be able to update older workstations by adding new tools. Seems like this addition would be useful for more than just us.