Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-bixby committed May 9, 2022
1 parent 6845ef8 commit 22afb8e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Expand Up @@ -3,15 +3,15 @@ FROM ubuntu:18.04
# Replace shell with bash so we can source files
RUN rm /bin/sh && ln -s /bin/bash /bin/sh

ENV ASB_VER 3.4.3
ENV ASB_VER 3.4.4
ENV HOME /root
WORKDIR $HOME

# Install curl
RUN apt-get update && apt-get install -y curl unzip

# Download/extract XPI
#RUN curl -L https://github.com/eric-bixby/auto-sort-bookmarks-webext/releases/download/v3.4.3/auto-sort_bookmarks-${ASB_VER}.xpi \
#RUN curl -L https://github.com/eric-bixby/auto-sort-bookmarks-webext/releases/download/v${ASB_VER}/auto-sort_bookmarks-${ASB_VER}.xpi \
# --output auto-sort_bookmarks-${ASB_VER}.xpi \
# && unzip auto-sort_bookmarks-${ASB_VER}.xpi -d auto-sort_bookmarks-${ASB_VER}

Expand Down
2 changes: 1 addition & 1 deletion docker-copy.sh
@@ -1,6 +1,6 @@
#!/bin/sh

ASB_VER=3.4.3
ASB_VER=3.4.4
XPI_FILE=auto-sort_bookmarks-${ASB_VER}.xpi

id=$(docker create asb)
Expand Down
4 changes: 2 additions & 2 deletions reproduce.sh
@@ -1,6 +1,6 @@
#!/bin/sh

ASB_VER=3.4.3
ASB_VER=3.4.4
OUT_DIR=~/temp

sudo apt install curl -y
Expand All @@ -9,7 +9,7 @@ rm -rf ${OUT_DIR}
mkdir -p ${OUT_DIR}
cd ${OUT_DIR}

curl -L https://github.com/eric-bixby/auto-sort-bookmarks-webext/releases/download/v3.4.3/auto-sort_bookmarks-${ASB_VER}.xpi --output auto-sort_bookmarks-${ASB_VER}.xpi
curl -L https://github.com/eric-bixby/auto-sort-bookmarks-webext/releases/download/v${ASB_VER}/auto-sort_bookmarks-${ASB_VER}.xpi --output auto-sort_bookmarks-${ASB_VER}.xpi

unzip auto-sort_bookmarks-${ASB_VER}.xpi -d auto-sort_bookmarks-${ASB_VER}

Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Expand Up @@ -34,5 +34,5 @@
"browser_style": true
},
"permissions": ["bookmarks", "downloads", "history", "storage", "tabs"],
"version": "3.4.3"
"version": "3.4.4"
}

0 comments on commit 22afb8e

Please sign in to comment.