This commit is contained in:
Anang Yusman 2025-01-05 16:29:22 +08:00
parent f072a636c3
commit 614b3e36a4
3 changed files with 11 additions and 2 deletions

1
package-lock.json generated
View File

@ -17675,6 +17675,7 @@
} }
}, },
"vendor/ckeditor5": { "vendor/ckeditor5": {
"name": "ckeditor5-custom-build",
"version": "0.0.1", "version": "0.0.1",
"license": "SEE LICENSE IN LICENSE.md", "license": "SEE LICENSE IN LICENSE.md",
"dependencies": { "dependencies": {

View File

@ -2,7 +2,11 @@
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in case `uname` in
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; *CYGWIN*|*MINGW*|*MSYS*)
if command -v cygpath > /dev/null 2>&1; then
basedir=`cygpath -w "$basedir"`
fi
;;
esac esac
if [ -x "$basedir/node" ]; then if [ -x "$basedir/node" ]; then

View File

@ -2,7 +2,11 @@
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in case `uname` in
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; *CYGWIN*|*MINGW*|*MSYS*)
if command -v cygpath > /dev/null 2>&1; then
basedir=`cygpath -w "$basedir"`
fi
;;
esac esac
if [ -x "$basedir/node" ]; then if [ -x "$basedir/node" ]; then