Skip to content

Commit a596e63

Browse files
committed
fix: language in the build script
1 parent f5ab0f4 commit a596e63

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

build.sh

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,36 @@
11
#!/bin/bash
22
set -e
33

4-
IMAGE_NAME="manjaro-wsl-clean"
4+
IMAGE_NAME="manjaro-wsl"
55
CONTAINER_NAME="manjaro-wsl-export-temp"
66
OUTPUT_DIR="output"
77
ICONS_ZIP_URL="https://github.com/yuk7/wsldl/releases/latest/download/icons.zip"
88

9-
echo -e "\e[36m[INFO] Iniciando build v3.0 (Smart - No Wine)...\e[0m"
9+
echo -e "\e[36m[INFO] Starting build...\e[0m"
1010

1111
rm -rf "$OUTPUT_DIR"
1212
mkdir -p "$OUTPUT_DIR"
1313

14-
echo -e "\e[36m[INFO] Buildando imagem Docker...\e[0m"
14+
echo -e "\e[36m[INFO] Building Docker image...\e[0m"
1515
docker build -t "$IMAGE_NAME" .
1616

17-
echo -e "\e[36m[INFO] Criando container para exportação...\e[0m"
17+
echo -e "\e[36m[INFO] Creating container for export...\e[0m"
1818
docker rm -f "$CONTAINER_NAME" 2>/dev/null || true
1919
docker create --name "$CONTAINER_NAME" "$IMAGE_NAME" > /dev/null
2020

21-
echo -e "\e[36m[INFO] Exportando RootFS...\e[0m"
21+
echo -e "\e[36m[INFO] Exporting RootFS...\e[0m"
2222
docker export "$CONTAINER_NAME" | gzip > "$OUTPUT_DIR/rootfs.tar.gz"
2323

24-
echo -e "\e[36m[INFO] Baixando Launcher Manjaro oficial (pré-iconizado)...\e[0m"
24+
echo -e "\e[36m[INFO] Downloading official wsldl Manjaro Launcher...\e[0m"
2525
curl -L -o "$OUTPUT_DIR/icons.zip" "$ICONS_ZIP_URL"
2626

27-
echo -e "\e[36m[INFO] Extraindo Manjaro.exe...\e[0m"
27+
echo -e "\e[36m[INFO] Extracting Manjaro.exe...\e[0m"
2828
unzip -q -j "$OUTPUT_DIR/icons.zip" "Manjaro.exe" -d "$OUTPUT_DIR"
2929

3030
rm "$OUTPUT_DIR/icons.zip"
3131
docker rm -f "$CONTAINER_NAME" > /dev/null
3232

3333
echo -e "\e[32m------------------------------------------------\e[0m"
34-
echo -e "\e[32mSUCESSO! Build finalizado.\e[0m"
35-
echo -e "Arquivos gerados em: ./$OUTPUT_DIR"
34+
echo -e "\e[32mSUCCESS! Build finished.\e[0m"
35+
echo -e "Files generated at: ./$OUTPUT_DIR"
3636
echo -e "\e[32m------------------------------------------------\e[0m"

0 commit comments

Comments
 (0)