Skip to content

Commit 162faed

Browse files
committed
fix shim ordering
our shims don't _do_ anything if the build deps include a compiler/linker. this breaks all the hard work we do. swap the order
1 parent e5b54e7 commit 162faed

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/porcelain/build-script.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ export default async function(config: Config, PATH?: Path): Promise<string> {
5151
5252
${gum} format "## env"
5353
export PKGX_HOME="$HOME"
54-
export PATH="${brewkit_PATHs}:$PATH"
5554
set -a
5655
${env_plus ? `eval "$(CLICOLOR_FORCE=1 ${pkgx} ${env_plus})"` : ''}
5756
set +a
57+
export PATH="${brewkit_PATHs}:$PATH"
5858
5959
export PKGX="${pkgx}"
6060
export HOME=${config.path.home.string}

0 commit comments

Comments
 (0)