File tree 1 file changed +10
-4
lines changed
1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change 157
157
(let ((default-directory (raycast--extension-directory))
158
158
(run-command (cond
159
159
((and raycast-mode-emoji target)
160
- (format " npm run %s -- --emoji --target %s " command target))
160
+ (format " npm run %s -- --emoji --target %s "
161
+ (shell-quote-argument command)
162
+ (shell-quote-argument target)))
161
163
(raycast-mode-emoji
162
- (format " npm run %s -- --emoji " command))
164
+ (format " npm run %s -- --emoji "
165
+ (shell-quote-argument command)))
163
166
(target
164
- (format " npm run %s -- --target %s " command target))
165
- (t (format " npm run %s " command)))))
167
+ (format " npm run %s -- --target %s "
168
+ (shell-quote-argument command)
169
+ (shell-quote-argument target)))
170
+ (t (format " npm run %s "
171
+ (shell-quote-argument command))))))
166
172
(compile run-command)))
167
173
168
174
(defun raycast--npm (command )
You can’t perform that action at this time.
0 commit comments