chore : change for package using

This commit is contained in:
2025-05-19 09:43:11 +03:30
parent 62b23a26df
commit 982329a3eb

View File

@@ -1,8 +1,20 @@
#!/bin/bash
# Relative path to the package
PACKAGE_PATH="../packages/core"
# Get absolute path to the package
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
PACKAGE_ABS_PATH="$SCRIPT_DIR/$PACKAGE_PATH"
echo "🗃️ package path: $PACKAGE_ABS_PATH"
# Directory to read files from
sourcePath="assets/icons"
targetPath="assets/vec"
sourcePath="$PACKAGE_ABS_PATH/assets/icons"
targetPath="$PACKAGE_ABS_PATH/assets/vec"
echo "🗃️ sourcePath path: $sourcePath"
echo "🗃️ targetPath path: $targetPath"
if [ ! -e "$targetPath" ]; then