From a3b8d0fe198473f18495696025e6852c4d2c9f58 Mon Sep 17 00:00:00 2001 From: Nat Date: Thu, 13 Sep 2007 20:33:18 +0000 Subject: Jam works --- (limited to 'TamTamMini.activity/setup.py') diff --git a/TamTamMini.activity/setup.py b/TamTamMini.activity/setup.py index 5b21f11..87a6a08 100644 --- a/TamTamMini.activity/setup.py +++ b/TamTamMini.activity/setup.py @@ -17,5 +17,14 @@ # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA from sugar.activity import bundlebuilder +import shutil +import os -bundlebuilder.start('TamTam') +#We are removing the symlink to common and replacing it with the real common folder +os.system('unlink common') +shutil.copytree('../common', 'common') + +bundlebuilder.start('TamTamMini') +#Restore the symlink +os.system('rm -rf common') +os.system('ln -s ../common common') -- cgit v0.9.1