mirror of
https://github.com/voidlhf/StarRailGrubThemes.git
synced 2025-01-05 10:16:54 +08:00
17 lines
295 B
Bash
Executable File
17 lines
295 B
Bash
Executable File
#!/bin/bash
|
|
|
|
script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
source_dir="/assets/themes"
|
|
|
|
destination_dir="/themes"
|
|
|
|
|
|
cd "$script_dir/$source_dir"
|
|
|
|
for folder in */; do
|
|
folder_name=${folder%/}
|
|
tar -czvf "$script_dir/$destination_dir/$folder_name.tar.gz" "$folder_name"
|
|
done
|
|
|