From bd1b89326363092f568d80c3959feb7ed9cd7cb9 Mon Sep 17 00:00:00 2001 From: "Jason S. Ninneman" Date: Tue, 11 Jul 2017 16:07:09 -0700 Subject: [PATCH] Python-agnosticize coverage_dungeon.py. --- tests/Makefile | 2 +- tests/coverage_dungeon.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 tests/coverage_dungeon.py diff --git a/tests/Makefile b/tests/Makefile index 11083b8..c93f6bb 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -26,7 +26,7 @@ check: savecheck regress coverage: check lcov -t "advent" -o ../advent.info -c -d .. --gcov-tool=$(GCOV) genhtml -o ../coverage/ ../advent.info - python3 coverage_dungeon.py + ./coverage_dungeon.py .SUFFIXES: .chk diff --git a/tests/coverage_dungeon.py b/tests/coverage_dungeon.py old mode 100644 new mode 100755 index 7d3ea98..766a266 --- a/tests/coverage_dungeon.py +++ b/tests/coverage_dungeon.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python # This is the open-adventure dungeon text coverage report generator. It # consumes a YAML description of the dungeon and determines whether the -- 2.31.1