Skip to content

Commit

Permalink
Merge branch 'master' of github.com:dbosk/introtools
Browse files Browse the repository at this point in the history
  • Loading branch information
dbosk committed Aug 24, 2024
2 parents c22266a + d5c972b commit 209f735
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 0 deletions.
5 changes: 5 additions & 0 deletions adm/gits/datintro-setup.nw
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,11 @@ for round in ${COURSE_CODE_ORG}; do

users=$(mktemp)
extract_users ${canvas_id} > ${users}
if [[ ! -s ${users} ]]; then
rm $users
continue
fi

add_to_org ${gits_id} ${users}
rm $users
done
Expand Down
3 changes: 3 additions & 0 deletions modules/git/grading/grade.sh.nw
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,9 @@ grade_students() {
local github=$(echo $course | cut -f 2 -d :)

local students_w_times=$(students_with_grading_time "$canvas" "$assignm")
if [[ -z "$students_w_times" ]]; then
continue
fi

local repos=$(clone_repos $github $(echo "$students_w_times" | cut -f 1))

Expand Down
3 changes: 3 additions & 0 deletions modules/latex/grading/grade.sh.nw
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,9 @@ grade_students() {
local github=$(echo $course | cut -f 2 -d :)

local students_w_times=$(students_with_grading_time "$canvas" "$assignm")
if [[ -z "$students_w_times" ]]; then
continue
fi

local repos=$(clone_repos $github $(echo "$students_w_times" | cut -f 1))

Expand Down
2 changes: 2 additions & 0 deletions modules/ssh/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,15 @@ also have a command-line interface, it's not compatible with a UNIX-like
interface. If you run Windows 10, just go ahead and install Windows Subsystem
for Linux (WSL) to run Ubuntu in Windows. There are various guides:

- [Installing WSL2 on Windows][wsl2install] (FeedbackFruits, recommended)
- [Microsoft's installation guide][ms-wsl]
- [Ubuntu's installation guide][ubuntu-wsl]
- [omg!ubuntu!'s guide][WSL2]
- [How-to-geek's guide][WSL]

Pick your favourite!

[wsl2install]: https://eu.feedbackfruits.com/courses/activity-course/0ccfb0cc-3274-470f-9def-0ddec7bd1c73
[ms-wsl]: https://aka.ms/wsl2-install
[ubuntu-wsl]: https://ubuntu.com/tutorials/ubuntu-on-windows#1-overview
[WSL]: https://www.howtogeek.com/249966/how-to-install-and-use-the-linux-bash-shell-on-windows-10/
Expand Down

0 comments on commit 209f735

Please sign in to comment.