summarylogtreecommitdiffstats
path: root/install.patch
blob: 27be805c6419a31e9880b1368cdc61683304b06e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Index: Source/InstallFromWorkspace.cobra
===================================================================
diff --git a/Source/InstallFromWorkspace.cobra b/Source/InstallFromWorkspace.cobra
--- a/Source/InstallFromWorkspace.cobra	(revision 3047)
+++ b/Source/InstallFromWorkspace.cobra	(working copy)
@@ -106,7 +106,7 @@
 			'name': 'Cobra.Core',
 			'flags': '-build-standard-library',
 			'files': 'Cobra.Core/AssemblyAttrs.cobra',
-			'requiresGacVerification': true,
+			'requiresGacVerification': false,
 		},
 		{
 			'name': 'Cobra.Compiler',
@@ -113,7 +113,7 @@
 			'flags': '-c -t:lib -embed-version -ert:yes -namespace:Cobra.Compiler -files:files-to-compile.text',
 #			'files': 'Cobra.Core/Compiler.Attributes.cobra',  # to-do
 			'files': 'cobra.cobra',
-			'requiresGacVerification': true,
+			'requiresGacVerification': false,
 		},
 	]
 
@@ -158,9 +158,9 @@
 		.verifyNewlyBuiltCobra
 		.copyFilesToInstallDirectory
 		.verifyNewlyInstalledCobra
-		.cleanUpWorkspace
-		.installInPath
-		.changeDirectoryInstruction
+		# .cleanUpWorkspace
+		# .installInPath
+		# .changeDirectoryInstruction
 		print 'Visit http://cobra-language.com/ for discussion, wiki, samples, irc and more.'
 		print
 		print 'Success!'
@@ -619,7 +619,7 @@
 
 	def installLibrary(name as String, flags as String, files as String, requiresGacVerification)
 		.buildLibrary(name, flags, files as String)
-		.installLibraryToGAC(name)
+		# .installLibraryToGAC(name)
 		.verifyGacInstallation(name, requiresGacVerification)
 
 	def buildLibrary(name as String, flags as String, files as String)