Skip to content

Instantly share code, notes, and snippets.

@ted-piotrowski
Last active August 31, 2022 14:27
Show Gist options
  • Save ted-piotrowski/e5c223a6a2f6f3079cb38c959ceecaa6 to your computer and use it in GitHub Desktop.
Save ted-piotrowski/e5c223a6a2f6f3079cb38c959ceecaa6 to your computer and use it in GitHub Desktop.

Revisions

  1. ted-piotrowski renamed this gist Sep 27, 2016. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  2. ted-piotrowski revised this gist Sep 23, 2016. 1 changed file with 8 additions and 0 deletions.
    8 changes: 8 additions & 0 deletions example.sh
    Original file line number Diff line number Diff line change
    @@ -1,6 +1,14 @@
    # building Visual Studio Code Debian package on ARM

    # get source code
    git clone [email protected]:Microsoft/vscode.git
    cd vscode

    # build debian package
    ./scripts/npm.sh install --arch=armhf
    ./node_modules/.bin/gulp vscode-linux-arm-build-deb

    # locate built package, install and run
    find . -name *.deb #this will give location of built package
    sudo dpkg install [location-from-previous-step]
    code-oss # to run the installed program
  3. ted-piotrowski renamed this gist Sep 22, 2016. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  4. ted-piotrowski revised this gist Sep 22, 2016. 1 changed file with 3 additions and 2 deletions.
    5 changes: 3 additions & 2 deletions linux.sh
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,6 @@
    # building Visual Studio Code Debian package on ARM
    ./scripts/npm.sh install --arch=armhf
    ./node_modules/.bin/gulp vscode-linux-arm-build-deb
    sudo dpkg install .build/...*.deb
    code-oss
    find . -name *.deb #this will give location of built package
    sudo dpkg install [location-from-previous-step]
    code-oss # to run the installed program
  5. ted-piotrowski created this gist Sep 22, 2016.
    5 changes: 5 additions & 0 deletions linux.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,5 @@
    # building Visual Studio Code Debian package on ARM
    ./scripts/npm.sh install --arch=armhf
    ./node_modules/.bin/gulp vscode-linux-arm-build-deb
    sudo dpkg install .build/...*.deb
    code-oss