mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 14:03:30 +00:00 
			
		
		
		
	api: Fix installation of example and integrations.
Previously we were installing data files to e.g. /usr/local/example and /usr/local/integrations, which is really not OK. (imported from commit 0efb50412f93efabfe55443d5cac57a8ebb9fe06)
This commit is contained in:
		@@ -20,8 +20,8 @@ setup(name='humbug',
 | 
			
		||||
      ],
 | 
			
		||||
      url='https://humbughq.com/dist/api/',
 | 
			
		||||
      packages=['humbug'],
 | 
			
		||||
      data_files=[('examples', ["examples/humbugrc", "examples/send-message"]),
 | 
			
		||||
                  ('integrations', glob.glob('integrations/*')),
 | 
			
		||||
      data_files=[('share/humbug/examples', ["examples/humbugrc", "examples/send-message"]),
 | 
			
		||||
                  ('share/humbug/integrations', glob.glob('integrations/*')),
 | 
			
		||||
                  ],
 | 
			
		||||
      scripts=["bin/humbug-send"],
 | 
			
		||||
     )
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user