diff --git a/conda/update_feedstock.py b/conda/update_feedstock.py
index 52713881bdea7c78b86c4f19fb657d9f199f8800..1357ba390afa24573f9be367407c580ab4b2c2ce 100755
--- a/conda/update_feedstock.py
+++ b/conda/update_feedstock.py
@@ -75,7 +75,7 @@ def main(package):
   temp_dir = tempfile.mkdtemp()
   try:
     print("\nClonning the feedstock")
-    feedstock = os.path.join(temp_dir, 'feedstock')
+    feedstock = os.path.join(temp_dir, '{}-feedstock'.format(package))
     try:
       run_commands(['git', 'clone', 'git@github.com:conda-forge/{}-feedstock.git'.format(package), feedstock])
     except ValueError:
@@ -83,7 +83,7 @@ def main(package):
       raise
     os.chdir(feedstock)
     run_commands(['git', 'remote', 'add', 'bioidiap', 'git@github.com:bioidiap/{}-feedstock.git'.format(package)],
-                 ['git', 'fetch', '--all'],
+                 # ['git', 'fetch', '--all'],
                  ['git', 'checkout', '-b', stable_version])
     # update meta.yaml
     with open('recipe/meta.yaml') as f: