moved donut compile to after cloning dotfiles
This commit is contained in:
+12
-11
@@ -15,7 +15,7 @@
|
|||||||
brew help > out 2> errout
|
brew help > out 2> errout
|
||||||
rm out
|
rm out
|
||||||
|
|
||||||
if [ -n errout ]; then
|
if [ -s errout ]; then
|
||||||
rm errout
|
rm errout
|
||||||
echo "installing brew"
|
echo "installing brew"
|
||||||
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
||||||
@@ -31,17 +31,8 @@ brew install rust
|
|||||||
brew install tmux
|
brew install tmux
|
||||||
brew install wireshark
|
brew install wireshark
|
||||||
|
|
||||||
/usr/local/bin/gcc-13 -o donut donut.c > /dev/null 2> errout
|
|
||||||
|
|
||||||
if [ -n errout ]; then
|
echo "pull up the github PAT"
|
||||||
rm errout
|
|
||||||
echo "gcc failed"
|
|
||||||
else
|
|
||||||
mv donut ~/
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
echo "generate a github PAT"
|
|
||||||
|
|
||||||
cd ~/Documents/
|
cd ~/Documents/
|
||||||
mkdir work
|
mkdir work
|
||||||
@@ -52,6 +43,16 @@ cp dotfiles/mac/.zshrc ~/
|
|||||||
cp dotfiles/mac/.vimrc ~/
|
cp dotfiles/mac/.vimrc ~/
|
||||||
cp -r dotfiles/mac/.vim ~/
|
cp -r dotfiles/mac/.vim ~/
|
||||||
|
|
||||||
|
/usr/local/bin/gcc-13 -o donut dotfiles/mac/donut.c > /dev/null 2> errout
|
||||||
|
|
||||||
|
if [ -s errout ]; then
|
||||||
|
rm errout
|
||||||
|
echo "gcc failed"
|
||||||
|
else
|
||||||
|
mv donut ~/
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
git clone https://github.com/alexander-the-alright/TDM
|
git clone https://github.com/alexander-the-alright/TDM
|
||||||
go build TDM/tdm.go
|
go build TDM/tdm.go
|
||||||
mv tdm ~/
|
mv tdm ~/
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
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
|
||||||
Reference in New Issue
Block a user