File tree Expand file tree Collapse file tree 1 file changed +15
-3
lines changed
Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash
22set -e
33
4+ # Install Node.js and npm
5+ curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
6+ apt-get install -y nodejs
7+
8+ # Install Rust and Cargo
9+ curl --proto ' =https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
10+ source ~ /.cargo/env
11+
12+ # get the github code
413echo " Installing Amazon Q for command line (Linux)..."
14+ mkdir -p /app/amazon-q-developer-cli
15+ cd /app
516export AMAZON_Q_SIGV4=1
6-
7- # Install the Q branch code into machine + dependencies
8- cd /home/runner/work/amazon-q-developer-cli/amazon-q-developer-cli/
17+ git clone https://github.com/aws/amazon-q-developer-cli.git
18+ cd amazon-q-developer-cli
919npm run setup
20+
21+ echo " Amazon Q CLI installation completed successfully"
You can’t perform that action at this time.
0 commit comments