zshの設定がsetopt nomatchの状態でnvmを使用すると以下のようなエラーが出る場合がある
nvm_version:17: no matches found: v*
nvm:175: no matches found: *
これは、setopt nomatchによって、ワイルドカードによるファイル名生成のパターンにマッチするものがなかった場合、エラーメッセージが表示されるわけですね
直し方はいくつかあります。
xcargs = "" | |
xcargs += " IDEBuildOperationMaxNumberOfConcurrentCompileTasks=16" | |
xcargs += " GCC_GENERATE_DEBUGGING_SYMBOLS=NO DEBUG_INFORMATION_FORMAT=dwarf" | |
xcargs += " ONLY_ACTIVE_ARCH=YES VALID_ARCHS=arm64" | |
xcargs += " CC=\"ccacheclang\" GCC_PRECOMPILE_PREFIX_HEADER=NO" if File.exist?("/usr/local/bin/ccacheclang") |
// ==Taberareloo== | |
// { | |
// "name" : "Glitch Selected Region" | |
// , "description" : "Glitch Selected Region" | |
// , "include" : ["background", "content"] | |
// , "match" : ["*://*/*"] | |
// , "version" : "1.0.2" | |
// , "downloadURL" : "https://gist.githubusercontent.com/dlwr/8f616fc605ff6b99640e/raw/extractor.photo.capture.glitch.tbrl.js" | |
// } | |
// ==/Taberareloo== |
// | |
// GLGLitchEffect.h | |
// Glitch | |
// | |
// Created by Igor on 27.08.14. | |
// Copyright (c) 2014 Igor Muzyka. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> |
#!/usr/bin/env ruby | |
Dir.glob('*').each do |file| | |
body = File.read(file) | |
body.gsub!(/\{\{\{([^\n]+?)\}\}\}/, '`\1`') | |
body.gsub!(/\{\{\{(.+?)\}\}\}/m){|m| m.each_line.map{|x| "\t#{x}".gsub(/[\{\}]{3}/,'')}.join} | |
body.gsub!(/\=\=\=\=\s(.+?)\s\=\=\=\=/, '### \1') | |
body.gsub!(/\=\=\=\s(.+?)\s\=\=\=/, '## \1') | |
body.gsub!(/\=\=\s(.+?)\s\=\=/, '# \1') |
#!/usr/bin/env bash | |
# memusg -- Measure memory usage of processes | |
# Usage: memusg COMMAND [ARGS]... | |
# | |
# Author: Jaeho Shin <[email protected]> | |
# Created: 2010-08-16 | |
############################################################################ | |
# Copyright 2010 Jaeho Shin. # | |
# # | |
# Licensed under the Apache License, Version 2.0 (the "License"); # |