mirror of
https://github.com/LukeHagar/omarchy.git
synced 2025-12-06 04:20:23 +00:00
* Create ~/Work with ./bin in the path for contained projects * Split out the mise work setup as its own configurator * Fixup the migration to reuse config logic --------- Co-authored-by: David Heinemeier Hansson <david@hey.com>
10 lines
240 B
Bash
10 lines
240 B
Bash
echo "Create ~/Work with ./bin in the path for contained projects"
|
|
|
|
mise_config="$HOME/Work/.mise.toml"
|
|
|
|
if [[ -f $mise_config ]]; then
|
|
cp $mise_config "$mise_config.bak.$(date +%s)"
|
|
fi
|
|
|
|
source "$OMARCHY_PATH/install/config/mise-work.sh"
|