Skip to content

Commit

Permalink
Fix makezip for feinsum (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasdiener committed Nov 16, 2022
1 parent 50eefd7 commit e4faf48
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion makezip.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash

set -o errexit -o nounset

Expand All @@ -21,6 +21,10 @@ for name in */; do
MY_MODULES+="${name/\//} "

cd "$install_loc/$name"

# Feinsum has a different directory scheme
[[ $name == "feinsum/" ]] && cd src

echo "=== Zipping $name"
zip -r "$zipfile" "$name"
cd "$origin"
Expand Down

0 comments on commit e4faf48

Please sign in to comment.