fix(build): allow working directories that contain spaces (#63)

This commit is contained in:
UltimatePro-Grammer 2023-02-04 01:10:16 -05:00 committed by GitHub
parent 7b3220b955
commit 89084ba541
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash
export CARBONYL_ROOT=$(cd $(dirname -- "$0") && dirname -- $(pwd))
export CARBONYL_ROOT=$(cd $(dirname -- "$0") && dirname -- "$(pwd)")
source "$CARBONYL_ROOT/scripts/env.sh"

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash
export CARBONYL_ROOT=$(cd $(dirname -- "$0") && dirname -- $(pwd))
export CARBONYL_ROOT=$(cd $(dirname -- "$0") && dirname -- "$(pwd)")
source "$CARBONYL_ROOT/scripts/env.sh"

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash
export CARBONYL_ROOT=$(cd $(dirname -- "$0") && dirname -- $(pwd))
export CARBONYL_ROOT=$(cd $(dirname -- "$0") && dirname -- "$(pwd)")
source "$CARBONYL_ROOT/scripts/env.sh"

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash
export CARBONYL_ROOT=$(cd $(dirname -- "$0") && dirname -- $(pwd))
export CARBONYL_ROOT=$(cd $(dirname -- "$0") && dirname -- "$(pwd)")
source "$CARBONYL_ROOT/scripts/env.sh"

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash
export CARBONYL_ROOT=$(cd $(dirname -- "$0") && dirname -- $(pwd))
export CARBONYL_ROOT=$(cd $(dirname -- "$0") && dirname -- "$(pwd)")
source "$CARBONYL_ROOT/scripts/env.sh"

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash
export CARBONYL_ROOT=$(cd $(dirname -- "$0") && dirname -- $(pwd))
export CARBONYL_ROOT=$(cd $(dirname -- "$0") && dirname -- "$(pwd)")
source "$CARBONYL_ROOT/scripts/env.sh"

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash
export CARBONYL_ROOT=$(cd $(dirname -- "$0") && dirname -- $(pwd))
export CARBONYL_ROOT=$(cd $(dirname -- "$0") && dirname -- "$(pwd)")
source "$CARBONYL_ROOT/scripts/env.sh"