2021-04-08 02:09:27 +02:00
|
|
|
#! /usr/bin/env bash
|
|
|
|
#
|
|
|
|
# Clean ignored files
|
|
|
|
#
|
|
|
|
|
2021-05-23 15:04:01 +02:00
|
|
|
# TODO: integrate with Bridge.sh
|
|
|
|
|
2021-04-08 02:09:27 +02:00
|
|
|
git clean -d -f -X
|
|
|
|
git add .
|
2021-06-02 18:04:59 +02:00
|
|
|
|
|
|
|
! command -v beautysh && sudo pip install beautysh
|
|
|
|
beautysh -i 2 -s paronly *.sh
|
|
|
|
|
|
|
|
git add .
|
|
|
|
|
|
|
|
echo "DONE!"
|