Jump to content

Recommended Posts

Hello i have this error while compile quest 

make.sh: 4: Syntax error: word unexpected (expecting ")")

 

My make.sh 

Spoiler
#!/usr/local/bin/python
import pre_qc
import os
os.system('rm -rf object')
os.system('mkdir object')
#os.system('rm -rf pre_qc')
os.system('mkdir pre_qc')
os.system('chgrp quest object')
for line in file('locale_list'):
	r = pre_qc.run (line)
	if r == True:
		filename = 'pre_qc/'+line
	else:
		filename = line

	if os.system('./qc '+filename):
		print 'Error occured on compile ' + line
		os.system('chmod -R 770 object')
		import sys
		sys.exit(-1)

os.system('chmod -R 770 object')

 

 

Link to comment
Share on other sites

  • Replies 2
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.