File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -152,7 +152,8 @@ echo ""
152152export PATH=" $INSTALL_DIR :$PATH "
153153if command -v tsc & > /dev/null; then
154154 echo -e " ${GREEN} ✓ 'tsc' command is successfully installed!${NC} "
155- echo " Version: $( tsc --version) "
155+ echo " Version:"
156+ tsc version
156157else
157158 echo -e " ${YELLOW} [WARN] 'tsc' binary installed but not active in current shell environment.${NC} "
158159 echo " Please restart your terminal or run: source $SHELL_RC "
@@ -166,6 +167,8 @@ echo -e "${GREEN}${BOLD} =======================================${NC}"
166167echo -e " ${GREEN}${BOLD} TechScript v2.0.0 Setup Complete! 🎉 ${NC} "
167168echo -e " ${GREEN}${BOLD} =======================================${NC} "
168169echo " "
169- echo " Try compiling your first program:"
170- echo " tsc run examples/hello_world/hello.txs"
170+ echo " Create and run your first project:"
171+ echo " tsc new my_project"
172+ echo " cd my_project"
173+ echo " tsc run"
171174echo " "
You can’t perform that action at this time.
0 commit comments