902babdf22
Move all the intelligence into the new file address_translation.go. That the calculations were spread out too much became apparent when adding the file header. This should make the code much easier to modify in the future.
12 lines
79 B
Bash
Executable File
12 lines
79 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eux
|
|
|
|
for i in ./cryptfs .
|
|
do
|
|
|
|
go build $i
|
|
go test $i
|
|
done
|
|
|