Skip to content

Commit

Permalink
Incorporate some comments from Elliot's review
Browse files Browse the repository at this point in the history
---
Signed-off-by: Brad Chamberlain <bradcray@users.noreply.github.com>
  • Loading branch information
bradcray committed Sep 12, 2020
1 parent 80ea5c2 commit 611bfb9
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 163 deletions.
1 change: 0 additions & 1 deletion README.devel
Expand Up @@ -59,5 +59,4 @@ the git tree, but not exactly the same:
The following files/directories are for developers only:

README.devel : this file
spec/ : the LaTeX sources for the language specification
test/ : the Chapel testing system in all its glory
42 changes: 0 additions & 42 deletions test/FUTURES-semantic

This file was deleted.

1 change: 0 additions & 1 deletion util/buildRelease/gen_release
Expand Up @@ -115,7 +115,6 @@ if (exists($ENV{"CHPL_GEN_RELEASE_NO_CLONE"})) {
"CHANGES.md",
"CONTRIBUTORS.md",
"COPYRIGHT",
"GOALS.md",
"LICENSE",
"LICENSE.chapel",
"Makefile",
Expand Down
1 change: 0 additions & 1 deletion util/buildRelease/install.sh
Expand Up @@ -249,7 +249,6 @@ myinstallfile ACKNOWLEDGEMENTS.md "$DEST_CHPL_HOME"
myinstallfile CHANGES.md "$DEST_CHPL_HOME"
myinstallfile CONTRIBUTORS.md "$DEST_CHPL_HOME"
myinstallfile COPYRIGHT "$DEST_CHPL_HOME"
myinstallfile GOALS.md "$DEST_CHPL_HOME"
myinstallfile LICENSE "$DEST_CHPL_HOME"
myinstallfile LICENSE.chapel "$DEST_CHPL_HOME"
myinstallfile README.rst "$DEST_CHPL_HOME"
Expand Down
8 changes: 3 additions & 5 deletions util/cron/nightly
Expand Up @@ -247,11 +247,9 @@ if (exists($ENV{"JENKINS_URL"})) {
$user = `whoami`;
chomp($user);
$debugmail = $ENV{'CHPL_NIGHTLY_DEBUG_EMAIL'};
if ($debugmail eq "") {
$debugmail = "$user\@hpe.com";
if ($debug == 1) {
$replymail = $debugemail;
}
if ($debug == 1 && $debugmail eq "") {
print "Set CHPL_NIGHTLY_DEBUG_EMAIL to use debug mode\n";
exit 1;
}
$today = `date +%w-%a`; chomp($today);
$starttime = localtime;
Expand Down
108 changes: 0 additions & 108 deletions util/devel/test/future_stats

This file was deleted.

8 changes: 3 additions & 5 deletions util/tokencount/tokctnightly
Expand Up @@ -46,11 +46,9 @@ if ($printusage == 1) {
$user = `whoami`;
chomp($user);
$debugmail = $ENV{'CHPL_NIGHTLY_DEBUG_EMAIL'};
if ($debugmail eq "") {
$debugmail = "$user\@hpe.com";
if ($debug == 1) {
$replymail = $debugemail;
}
if ($debug == 1 && $debugmail eq "") {
print "Set CHPL_NIGHTLY_DEBUG_EMAIL to use debug mode\n";
exit 1;
}
$today = `date +%w-%a`; chomp($today);

Expand Down

0 comments on commit 611bfb9

Please sign in to comment.