Skip to content

Commit

Permalink
Update scm scripts for TclTk.
Browse files Browse the repository at this point in the history
  • Loading branch information
culler committed Dec 5, 2023
1 parent 3647796 commit 574bd9e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions TclTk/fetch_tcltk.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/bash
set -e

TCL_VERSION=8.6.11
TK_VERSION=8.6.11.1
TCL_VERSION=9.0
TK_VERSION=9.0

mkdir Tcl Tk

Expand Down
2 changes: 1 addition & 1 deletion TclTk/fossil_tcltk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ mkdir -p Tcl Tk

if [ ! -f Tcl.fossil ]; then
fossil clone http://core.tcl.tk/tcl Tcl.fossil
fossil open --workdir Tcl Tcl.fossil core-8-branch
fossil open --workdir Tcl Tcl.fossil main
else
fossil pull -R Tcl.fossil
cd Tcl
Expand Down
2 changes: 1 addition & 1 deletion TclTk/git_tcltk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e
if [ ! -d Tcl ]; then
git clone https://github.com/tcltk/tcl Tcl
cd Tcl
git checkout core-8-branch
git checkout main
else
cd Tcl
git pull
Expand Down

0 comments on commit 574bd9e

Please sign in to comment.