Skip to content

Commit

Permalink
Do not expand paths in taskfile
Browse files Browse the repository at this point in the history
  • Loading branch information
krystian-panek-vmltech committed Dec 14, 2023
1 parent 16e1906 commit f12a4eb
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
10 changes: 9 additions & 1 deletion pkg/project/common/aemw
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,15 @@ if [ "${VERSION}" != "installed" ] ; then
}
fi

# Prevent OS or shell-specific glitches
# =====================================

# https://stackoverflow.com/questions/7250130/how-to-stop-mingw-and-msys-from-mangling-path-names-given-at-the-command-line
export MSYS_NO_PATHCONV=1
export MSYS2_ARG_CONV_EXCL="*"
export MSYS2_ENV_CONV_EXCL="*"

# Execute AEM Compose CLI
# ==========================================
# =======================

aem "$@"
8 changes: 8 additions & 0 deletions pkg/project/common/taskw
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,14 @@ if [ ! -f "${BIN_EXEC_FILE}" ]; then
chmod +x "${BIN_EXEC_FILE}"
fi

# Prevent OS or shell-specific glitches
# =====================================

# https://stackoverflow.com/questions/7250130/how-to-stop-mingw-and-msys-from-mangling-path-names-given-at-the-command-line
export MSYS_NO_PATHCONV=1
export MSYS2_ARG_CONV_EXCL="*"
export MSYS2_ENV_CONV_EXCL="*"

# Execute Task Tool
# =================

Expand Down

0 comments on commit f12a4eb

Please sign in to comment.