This repository was archived by the owner on Oct 3, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +39
-0
lines changed Expand file tree Collapse file tree 3 files changed +39
-0
lines changed Original file line number Diff line number Diff line change 3540
3540
"datasourceTemplate" : " github-releases" ,
3541
3541
"extractVersionTemplate" : " ^v(?<version>.+?)$"
3542
3542
},
3543
+ {
3544
+ "fileMatch" : [
3545
+ " ^tools/wsl-open/manifest.yaml$"
3546
+ ],
3547
+ "matchStrings" : [
3548
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
3549
+ ],
3550
+ "depNameTemplate" : " 4U6U57/wsl-open" ,
3551
+ "datasourceTemplate" : " github-releases" ,
3552
+ "extractVersionTemplate" : " ^v(?<version>.+?)$"
3553
+ },
3543
3554
{
3544
3555
"fileMatch" : [
3545
3556
" ^tools/wslu/manifest.yaml$"
Original file line number Diff line number Diff line change
1
+ #syntax=docker/dockerfile:1.4.3
2
+
3
+ ARG ref=main
4
+ FROM ghcr.io/nicholasdille/docker-setup/base:${ref} AS prepare
5
+
6
+ ARG name
7
+ ARG version
8
+
9
+ RUN <<EOF
10
+ curl --silent --location --output "${prefix}${target}/bin/wsl-open" \
11
+ "https://github.com/4U6U57/wsl-open/raw/v${version}/wsl-open.sh"
12
+ chmod +x "${prefix}${target}/bin/wsl-open"
13
+
14
+ curl --silent --location --output "${prefix}${target}/share/man/man1/wsl-open.1" \
15
+ "https://github.com/4U6U57/wsl-open/raw/v${version}/wsl-open.1"
16
+ EOF
Original file line number Diff line number Diff line change
1
+ name : wsl-open
2
+ version : 2.2.1
3
+ check : " "
4
+ tags :
5
+ - category/?
6
+ - lang/shell
7
+ homepage : https://github.com/4U6U57/wsl-open
8
+ description : Open files with xdg-open on Bash for Windows in Windows applications
9
+ renovate :
10
+ datasource : github-releases
11
+ package : 4U6U57/wsl-open
12
+ extractVersion : ^v(?<version>.+?)$
You can’t perform that action at this time.
0 commit comments