mirror of
https://github.com/DaoCloud/public-image-mirror.git
synced 2025-08-08 21:57:43 +08:00
7 lines
87 B
Bash
Executable File
7 lines
87 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
cp $1 $1.bak
|
|
./hack/fmt.sh $1.bak
|
|
|
|
diff -c $1 $1.bak && rm $1.bak
|