You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by se...@apache.org on 2020/07/07 12:53:02 UTC

[whimsy] branch master updated: Use correct SVN name

This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
     new 287de46  Use correct SVN name
287de46 is described below

commit 287de4656c761808b4aabe456aba64bffae016b4
Author: Sebb <se...@apache.org>
AuthorDate: Tue Jul 7 13:52:51 2020 +0100

    Use correct SVN name
---
 tools/migrate_podlings.rb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/migrate_podlings.rb b/tools/migrate_podlings.rb
index 4713f0e..30fad0e 100644
--- a/tools/migrate_podlings.rb
+++ b/tools/migrate_podlings.rb
@@ -1,8 +1,8 @@
 require 'whimsy/asf'
 require 'yaml'
 
-incubator_content = ASF::SVN['incubator-content']
+incubator_podlings = ASF::SVN['incubator-podlings']
 ASF::Podlings.list.select{ |p| p.status == 'current'}.each_entry{ |podling|
-  pod_status_yml = File.join(incubator_content, 'podlings', "#{podling.resource}.yml")
+  pod_status_yml = File.join(incubator_podlings, "#{podling.resource}.yml")
   File.open(pod_status_yml, 'w') {|f| f.write(podling.default_status.to_yaml) }
 }
\ No newline at end of file