18 lines
384 B
Bash
18 lines
384 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
|
||
|
|
SOURCE_FILE="lib/presentation/common/assets.dart"
|
||
|
|
TARGET_DIR="packages/core/lib/presentation/common/assets.dart"
|
||
|
|
|
||
|
|
echo "--- Starting File Operations ---"
|
||
|
|
|
||
|
|
echo " 💀 Attempting to delete '$FILE_PATH_TO_DELETE'..."
|
||
|
|
rm -fv "$FILE_PATH_TO_DELETE"
|
||
|
|
echo "✅ Deletion step complete (file removed if it existed)."
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
echo "Attempting to copy source(s) to '$TARGET_DIR'..."
|
||
|
|
|