aiqcamp commited on
Commit
2e1dd03
·
verified ·
1 Parent(s): 6521b95

Delete dist.sh

Browse files
Files changed (1) hide show
  1. dist.sh +0 -18
dist.sh DELETED
@@ -1,18 +0,0 @@
1
- #!/bin/bash
2
-
3
- conflicts () {
4
- read -n 1 -p "Please fix the conflicts, then, press any key to continue" tmp
5
- git add --all .
6
- git rebase --continue || conflicts
7
- }
8
-
9
- git lfs update --force
10
- git lfs install
11
- git fetch
12
- git checkout
13
- git add --all .
14
- git commit -m "commit"
15
- ( git rebase ) || (
16
- conflicts
17
- )
18
- ( git push ) && ( read -n 1 -p "Finished." tmp ) || ( read -n 1 -p "Error: Failed to push!" tmp )