Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Apr 9, 2024
1 parent 1e26986 commit 6b62018
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 15 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# dybuk
Dybuk cleans up the ugly Rustc messages (inspired by Elm). Dybuk supports some other compilers aswell.

Dybuk cleans up the ugly Rustc messages (inspired by Elm). Dybuk supports some
other compilers aswell.

<img src="screenshot.png" width="550">

Expand Down
28 changes: 14 additions & 14 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,22 +44,22 @@ function main() {

[[ ! -e "target/release/dybuk" || ! -e "target/release/deps" ]]
case "$?" in
0)
_install
;;
0)
_install
;;

1)
log_e "Generated files doesn't exists."
if [ "$EUID" = "0" ]; then
log_e "Building the project with root privileges is prohibited."
return 1
fi
1)
log_e "Generated files doesn't exists."
if [ "$EUID" = "0" ]; then
log_e "Building the project with root privileges is prohibited."
return 1
fi

if ask_yesno "Build project"; then
build && _install
return "$?"
fi
;;
if ask_yesno "Build project"; then
build && _install
return "$?"
fi
;;
esac
}

Expand Down

0 comments on commit 6b62018

Please sign in to comment.