Skip to content
This repository has been archived by the owner on Sep 23, 2020. It is now read-only.

Commit

Permalink
more compact web dirs for tarballs
Browse files Browse the repository at this point in the history
  • Loading branch information
timf committed Jul 11, 2010
1 parent 13e6b90 commit 6f1f252
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/lib/web_ball.py
Expand Up @@ -63,7 +63,7 @@ def _make_dist(builddir, current_commit_hash):
# make a unique directory for all of the tarballs, easier to reason
# about the result this way
now = datetime.now()
basename = "%.4d-%.2d-%.2d__%.2d-%.2d__%s" % (now.year, now.month, now.day, now.hour, now.minute, current_commit_hash)
basename = "%.4d-%.2d-%.2d_%.2d%.2d_%s" % (now.year, now.month, now.day, now.hour, now.minute, current_commit_hash[:8])
result_dir = os.path.join("/tmp/", basename)

with cd(builddir):
Expand Down

0 comments on commit 6f1f252

Please sign in to comment.