mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-25 14:19:51 +00:00
378e4d9d22
not sure if this is really an improvement, now it does not need bash and does not use [ ]
8 lines
212 B
Bash
Executable File
8 lines
212 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if ! git remote | grep upstream > /dev/null
|
|
then
|
|
git remote add upstream https://github.com/radare/radare2.git
|
|
fi
|
|
test -d radare2 && git fetch upstream && git rebase --onto master upstream/master
|