Skip to content

Commit

Permalink
Merge pull request #36 from KallistiOSUnchained/fix_env_master
Browse files Browse the repository at this point in the history
Fixed path in environ.sh.master
  • Loading branch information
andressbarajas authored Nov 21, 2024
2 parents 6916c43 + b7504e0 commit 3fafb83
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions environ.sh.master
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,14 @@
# the KOS environment is set up automatically for each shell session.
#

# The base directory for your KallistiOS installation. If you going
# to edit anything in this file it would be this line.
KOS_PATH="/opt/toolchains/dc/kos"

# Source the default environment settings
echo "Sourcing default settings from environ.sh.sample..."
. "doc/environ.sh.sample"
. "${KOS_PATH}/doc/environ.sh.sample"

# Source user-specific overrides, if present
if [ -f "./environ.sh" ]; then
echo "Sourcing local overrides from environ.sh.local..."
. "./environ.sh"
if [ -f "${KOS_PATH}/environ.sh" ]; then
. "${KOS_PATH}/environ.sh"
fi

0 comments on commit 3fafb83

Please sign in to comment.