Last active
August 31, 2022 14:27
-
-
Save ted-piotrowski/e5c223a6a2f6f3079cb38c959ceecaa6 to your computer and use it in GitHub Desktop.
Revisions
-
ted-piotrowski renamed this gist
Sep 27, 2016 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
ted-piotrowski revised this gist
Sep 23, 2016 . 1 changed file with 8 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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 -
ted-piotrowski renamed this gist
Sep 22, 2016 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
ted-piotrowski revised this gist
Sep 22, 2016 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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 find . -name *.deb #this will give location of built package sudo dpkg install [location-from-previous-step] code-oss # to run the installed program -
ted-piotrowski created this gist
Sep 22, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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