Skip to content

Commit

Permalink
Fix pacman target
Browse files Browse the repository at this point in the history
  • Loading branch information
jwbonner committed Feb 20, 2022
1 parent 80cb529 commit c054cb3
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 18 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
cache: 'npm'
- name: Install Node.js dependencies
run: npm install
- name: Install Linux dependencies
if: matrix.host.os == 'ubuntu-latest'
run: sudo apt-get install --no-install-recommends -y libarchive-tools
- name: Prepare macOS certificate
if: matrix.host.os == 'macos-latest'
run: |
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ jobs:
cache: 'npm'
- name: Install Node.js dependencies
run: npm install
- name: Install Linux dependencies
if: matrix.host.os == 'ubuntu-latest'
run: sudo apt-get install --no-install-recommends -y libarchive-tools
- name: Prepare macOS certificate
if: matrix.host.os == 'macos-latest'
run: |
Expand Down
4 changes: 1 addition & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
Minor usability improvements:
* Added separate "Connect to Robot" and "Connect to Simulator" buttons in menu.
* Moved all default log tables to the end of the list in the side bar.
Added a ".pacman" target for installation on Arch Linux.
29 changes: 15 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "advantage-scope",
"productName": "Advantage Scope",
"version": "1.16.0",
"version": "1.16.1",
"description": "Logging tool from FRC Team 6328.",
"main": "main.js",
"scripts": {
Expand Down

0 comments on commit c054cb3

Please sign in to comment.