Skip to content

Commit a499dae

Browse files
authored
Merge pull request #27 from thelamer/master
updating npm endpoint
2 parents 44f04a5 + 3aa80b7 commit a499dae

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ RUN \
2020
npm config set unsafe-perm true && \
2121
echo "**** install the lounge irc ****" && \
2222
if [ -z ${THELOUNGE_VERSION+x} ]; then \
23-
THELOUNGE_VERSION=$(curl -sL https://skimdb.npmjs.com/registry/thelounge \
23+
THELOUNGE_VERSION=$(curl -sL https://replicate.npmjs.com/registry/thelounge \
2424
|jq -r '. | .["dist-tags"].latest'); \
2525
fi && \
2626
mkdir -p \

Dockerfile.aarch64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN \
2626
npm config set unsafe-perm true && \
2727
echo "**** install the lounge irc ****" && \
2828
if [ -z ${THELOUNGE_VERSION+x} ]; then \
29-
THELOUNGE_VERSION=$(curl -sL https://skimdb.npmjs.com/registry/thelounge \
29+
THELOUNGE_VERSION=$(curl -sL https://replicate.npmjs.com/registry/thelounge \
3030
|jq -r '. | .["dist-tags"].latest'); \
3131
fi && \
3232
mkdir -p \

Dockerfile.armhf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN \
2626
npm config set unsafe-perm true && \
2727
echo "**** install the lounge irc ****" && \
2828
if [ -z ${THELOUNGE_VERSION+x} ]; then \
29-
THELOUNGE_VERSION=$(curl -sL https://skimdb.npmjs.com/registry/thelounge \
29+
THELOUNGE_VERSION=$(curl -sL https://replicate.npmjs.com/registry/thelounge \
3030
|jq -r '. | .["dist-tags"].latest'); \
3131
fi && \
3232
mkdir -p \

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ pipeline {
105105
steps{
106106
script{
107107
env.EXT_RELEASE = sh(
108-
script: '''curl -sL https://skimdb.npmjs.com/registry/${EXT_NPM} |jq -r '. | .["dist-tags"].latest' ''',
108+
script: '''curl -sL https://replicate.npmjs.com/registry/${EXT_NPM} |jq -r '. | .["dist-tags"].latest' ''',
109109
returnStdout: true).trim()
110110
env.RELEASE_LINK = 'https://www.npmjs.com/package/' + env.EXT_NPM
111111
}

0 commit comments

Comments
 (0)