Skip to content

Instantly share code, notes, and snippets.

@georgezim85
Created November 10, 2020 05:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save georgezim85/739f53b0f03beafc8c7a6953e65d7df1 to your computer and use it in GitHub Desktop.
Save georgezim85/739f53b0f03beafc8c7a6953e65d7df1 to your computer and use it in GitHub Desktop.
Installs a vscode-codeception extension from a specific github project branch
#!/bin/bash
set -e
# Check if vsce is installed
npm install -g vsce
git clone -b feature/run-in-docker https://github.com/georgezim85/vscode-codeception.git
cd vscode-codeception
yarn --non-interactive
npm run build
mkdir -p build
vsce package --yarn
code --install-extension vscode-codeception-1.1.0.vsix
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment