Skip to content

Commit

Permalink
Set openHAB to correct version in binding skeleton scripts. (openhab#…
Browse files Browse the repository at this point in the history
…14061)

Signed-off-by: Hilbrand Bouwkamp <[email protected]>
  • Loading branch information
Hilbrand authored and borazslo committed Jan 8, 2023
1 parent 5bd5942 commit 42b5b82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bundles/create_openhab_binding_skeleton.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ IF %ARGC% NEQ 3 (
exit /B 1
)

SET OpenhabVersion="3.4.0-SNAPSHOT"
SET OpenhabVersion="4.0.0-SNAPSHOT"

SET BindingIdInCamelCase=%~1
SET BindingIdInLowerCase=%BindingIdInCamelCase%
Expand Down
2 changes: 1 addition & 1 deletion bundles/create_openhab_binding_skeleton.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[ $# -lt 3 ] && { echo "Usage: $0 <BindingIdInCamelCase> <Author> <GitHub Username>"; exit 1; }

openHABVersion=3.4.0-SNAPSHOT
openHABVersion=4.0.0-SNAPSHOT

camelcaseId=$1
id=`echo $camelcaseId | tr '[:upper:]' '[:lower:]'`
Expand Down

0 comments on commit 42b5b82

Please sign in to comment.