Skip to content

Commit

Permalink
Final touches of 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jamonholmgren committed Nov 29, 2023
1 parent 37fd819 commit 9bae5c5
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Qub CLI
# By @jamonholmgren & @knewter

VERSION="0.0.1"
VERSION="0.1.0"

# What OS are we running on?

Expand All @@ -15,8 +15,8 @@ BLUE='\033[0;34m'
YELLOW='\033[1;33m'
RED='\033[0;31m'
DKGRAY='\033[1;30m'
GREEN='\033[0;32m'
CYAN='\033[0;36m'
GREEN='\033[0;32m'
END='\033[0m' # End Color

function replace_in_file {
Expand Down Expand Up @@ -159,9 +159,17 @@ if [[ $1 == "create" ]]; then
echo -e "${YELLOW}Next steps:${END}"
echo ""
echo -e " ${CYAN}cd ${DOMAIN}${END}"
if [[ $INSTALL_QB64 != "y" ]]; then
echo -e " ${CYAN}./bin/install_qb64${END}"
fi
echo -e " ${CYAN}./bin/build${END}"
echo -e " ${CYAN}./app${END}"
echo ""
echo -e "${YELLOW}Support Qub development:${END}"
echo ""
echo -e " ${CYAN}Star the repo: ${DKGRAY}https://github.com/jamonholmgren/qub${END}"
echo -e " ${CYAN}Tell me what you're making: ${DKGRAY}https://twitter.com/jamonholmgren${END}"
echo ""

exit 0
fi

0 comments on commit 9bae5c5

Please sign in to comment.