15 lines
141 B
Bash
Executable File
15 lines
141 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# FixupAPI
|
|
|
|
PS1="$"
|
|
|
|
cd Plazma-API
|
|
|
|
git add .
|
|
git commit -m "fixup"
|
|
git format-patch -1
|
|
mv 0001-fixup.patch ../
|
|
|
|
cd ../
|