-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmods.sh
55 lines (47 loc) · 1.59 KB
/
mods.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/bin/sh
# Função para substituir arquivo
replace_file() {
local target_path="$1"
local download_url="$2"
# Verifica se o caminho de destino foi fornecido
if [ -z "$target_path" ] || [ -z "$download_url" ]; then
echo "Erro: Caminho de destino ou URL de download inválidos"
return 1
fi
# Cria backup do arquivo original
if [ -f "$target_path" ]; then
cp "$target_path" "$target_path.bkp"
echo "Backup criado: $target_path.bkp"
fi
# Baixa o novo arquivo
wget -O "$target_path" "$download_url"
# Verifica se o download foi bem-sucedido
if [ $? -eq 0 ]; then
echo "Arquivo substituído com sucesso: $target_path"
return 0
else
echo "Erro ao baixar arquivo para: $target_path"
# Restaura backup se existir
if [ -f "$target_path.bkp" ]; then
mv "$target_path.bkp" "$target_path"
echo "Backup restaurado"
fi
return 1
fi
}
# Array de tuplas (caminho_destino url_download)
replace_files() {
local files=(
"app/views/layouts/vueapp.html.erb" "https://raw.githubusercontent.com/useAnder/chatwoot/refs/heads/develop/app/views/layouts/vueapp.html.erb"
"public/brand-assets/logo.svg" "https://raw.githubusercontent.com/useAnder/chatwoot/refs/heads/develop/public/brand-assets/logo.svg"
# Adicione mais tuplas aqui
)
# Itera sobre as tuplas
i=0
while [ $i -lt ${#files[@]} ]; do
replace_file "${files[$i]}" "${files[$i+1]}"
i=$((i+2))
done
}
# Executa a substituição de arquivos
replace_files