Skip to content

Commit 119c6f8

Browse files
authored
Merge pull request #1699 from github/devm33/install-ready
2 parents 3b73154 + 30034c7 commit 119c6f8

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

install.sh

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -156,14 +156,19 @@ if ! command -v copilot >/dev/null 2>&1; then
156156
if [ "$REPLY" = "y" ] || [ "$REPLY" = "Y" ]; then
157157
echo "export PATH=\"$INSTALL_DIR:\$PATH\"" >> "$RC_FILE"
158158
echo "✓ Added PATH export to $RC_FILE"
159+
echo " Restart your shell or run: source $RC_FILE"
159160
fi
160161
fi
161162
else
162163
echo ""
163164
echo "To add $INSTALL_DIR to your PATH permanently, add this to $RC_FILE:"
164165
echo " export PATH=\"$INSTALL_DIR:\$PATH\""
165166
fi
166-
fi
167167

168-
echo ""
169-
echo "Installation complete! Run 'copilot help' to get started."
168+
echo ""
169+
echo "Installation complete! To get started, run:"
170+
echo " export PATH=\"$INSTALL_DIR:\$PATH\" && copilot help"
171+
else
172+
echo ""
173+
echo "Installation complete! Run 'copilot help' to get started."
174+
fi

0 commit comments

Comments
 (0)