Skip to content

Commit

Permalink
[JENKINS-27152] Ameliorate problem by at least using a predictable co…
Browse files Browse the repository at this point in the history
…ntrol directory name.

This makes it easy to add to .gitignore and the like.
  • Loading branch information
jglick committed Nov 16, 2015
1 parent 0a836c1 commit 79990a9
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -160,7 +160,7 @@ private static class WriteLog extends MasterToSlaveFileCallable<Long> {
* Directory in which this controller can place files.
*/
public FilePath controlDir(FilePath ws) {
return ws.child("."+id);
return ws.child(".jenkins-" + id);
}

/**
Expand Down

0 comments on commit 79990a9

Please sign in to comment.