fix manager-solution

This commit is contained in:
2026-01-19 12:06:05 +01:00
parent 6a19f7cde6
commit 94b3a5ae88
261 changed files with 14723 additions and 17 deletions

23
create.sh Executable file
View File

@@ -0,0 +1,23 @@
#!/bin/sh
# Paths
BASE="/home/tommal/Desktop/eclipse_fis"
FINALE="$BASE/finale/linux.gtk.x86_64"
ECLIPSE_DIR="$FINALE/eclipse"
JRE_SRC="$BASE/jre"
TARGET="/home/tommal/Desktop/maschera"
NEW_NAME="Fiscality"
# 1. Copy jre directory into eclipse/
cp -r "$JRE_SRC" "$ECLIPSE_DIR/"
# 2. Rename eclipse → Fiscality
mv "$ECLIPSE_DIR" "$FINALE/$NEW_NAME"
# 3. Remove old Fiscality in /maschera if present
if [ -d "$TARGET/$NEW_NAME" ]; then
rm -rf "$TARGET/$NEW_NAME"
fi
# 4. Copy the new Fiscality directory into /maschera
cp -r "$FINALE/$NEW_NAME" "$TARGET/"