Index: /issm/trunk/src/m/utils/Nightly/testsgetpackage.m
===================================================================
--- /issm/trunk/src/m/utils/Nightly/testsgetpackage.m	(revision 1598)
+++ /issm/trunk/src/m/utils/Nightly/testsgetpackage.m	(revision 1599)
@@ -24,18 +24,6 @@
 
 elseif strcmpi(string,'cielo_parallel'),
-
-	%get hostname (and remove spaces with strtrim)
-	[ret,name]=system('hostname');
-	if ret,
-		if ispc
-			name=getenv('COMPUTERNAME');
-		else
-			name=getenv('HOSTNAME');
-		end
-	end
-	md.cluster=strtrim(lower(name));
-
-	%assign package
 	package='cielo';
+	md.cluster=oshostname;
 
 else
Index: /issm/trunk/src/m/utils/OS/scpin.m
===================================================================
--- /issm/trunk/src/m/utils/OS/scpin.m	(revision 1598)
+++ /issm/trunk/src/m/utils/OS/scpin.m	(revision 1599)
@@ -10,7 +10,13 @@
 
 %first be sure packages are not in the current directory, this could conflict with pscp on windows. 
+%get initial warning mode
+state=warning('query', 'all');
+%remove warnings in case the files do not exist
+warning off
 for i=1:numel(packages),
 	delete(packages{i});
 end
+%back to initial warning state
+warning(state);
 
 %if hostname and host are the same, do a simple copy
@@ -18,5 +24,5 @@
 
     for i=1:numel(packages),
-		copyfile(packages{i});
+		copyfile([path '/' packages{i}]);
 	end
 
