From eb917331a8de7ee724cd1eec5d0b9bb6ef76fae2 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sun, 8 May 2016 19:11:51 -0700 Subject: 2942 - switch scripts to bash I'm already using grep and perl, bash is no worse, and it's *much* nicer to work in than plain Bourne sh. --- build_and_test_until | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build_and_test_until') diff --git a/build_and_test_until b/build_and_test_until index b86249c6..80a6357f 100755 --- a/build_and_test_until +++ b/build_and_test_until @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Load all files sorting before the given argument. # You can pass in a prefix, but files matching the prefix *won't* be included. @@ -10,7 +10,7 @@ make --no-print-directory enumerate/enumerate cat /dev/null $(./enumerate/enumerate --until $1 |grep '.mu$') > core.mu make --no-print-directory autogenerated_lists set +v -if [ `uname` = "Darwin" ] +if [[ `uname` == "Darwin" ]] then # Darwin is shit and otherwise thinks mu_bin is newer than the files it just # generated when called from test_all_layers. -- cgit 1.4.1-2-gfad0 rite-friendly software → More resilient society.Kartik K. Agaram <vc@akkartik.com>
about summary refs log blame commit diff stats
path: root/subx/012elf.cc
blob: 0f05850466f688645ab18ef9ccad031b39a0d1e1 (plain) (tree)
1
2
3
4
5
6
7
8
9