Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save johnnyutahh/6e2316b051de19faee7c to your computer and use it in GitHub Desktop.
Save johnnyutahh/6e2316b051de19faee7c to your computer and use it in GitHub Desktop.
Aug 16 18:18:37 ~/Downloads/.../muchsync-2$ export sqlite3_CFLAGS=-I/usr/local/Cellar/sqlite/3.8.10.1/include
Aug 16 18:18:47 ~/Downloads/.../muchsync-2$ export sqlite3_LIBS="-L/usr/local/Cellar/sqlite/3.8.10.1/lib -lsqlite3"
Aug 16 18:18:52 ~/Downloads/.../muchsync-2$ make clean
test -z "muchsync" || rm -f muchsync
test -z "*~" || rm -f *~
rm -f *.o
Aug 16 18:19:02 ~/Downloads/.../muchsync-2$ ./configure
checking for a BSD-compatible install... /usr/local/bin/ginstall -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/local/bin/gmkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for g++... g++
checking whether the C++ compiler works... yes
checking for C++ compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking for style of include used by make... GNU
checking dependency style of g++... gcc3
checking whether g++ supports C++11 features by default... no
checking whether g++ supports C++11 features with -std=c++11... yes
checking whether C++ compiler accepts ... yes
checking whether C++ compiler accepts -pthread... yes
checking for openat... no
checking for pkg-config... /usr/local/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for sqlite3... yes
checking for libcrypto... yes
checking for xapian-config... /usr/local/bin/xapian-config
checking For st_mtim in struct stat... no
checking For st_mtimespec in struct stat... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: executing depfiles commands
Aug 16 18:19:07 ~/Downloads/.../muchsync-2$ make
g++ -DPACKAGE_NAME=\"muchsync\" -DPACKAGE_TARNAME=\"muchsync\" -DPACKAGE_VERSION=\"2\" -DPACKAGE_STRING=\"muchsync\ 2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"muchsync\" -DVERSION=\"2\" -DST_MTIM=st_mtimespec -I. -I/usr/local/Cellar/sqlite/3.8.10.1/include -I/usr/local/Cellar/xapian/1.2.19/include -g -O2 -std=c++11 -Wall -pthread -MT infinibuf.o -MD -MP -MF .deps/infinibuf.Tpo -c -o infinibuf.o infinibuf.cc
mv -f .deps/infinibuf.Tpo .deps/infinibuf.Po
g++ -DPACKAGE_NAME=\"muchsync\" -DPACKAGE_TARNAME=\"muchsync\" -DPACKAGE_VERSION=\"2\" -DPACKAGE_STRING=\"muchsync\ 2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"muchsync\" -DVERSION=\"2\" -DST_MTIM=st_mtimespec -I. -I/usr/local/Cellar/sqlite/3.8.10.1/include -I/usr/local/Cellar/xapian/1.2.19/include -g -O2 -std=c++11 -Wall -pthread -MT misc.o -MD -MP -MF .deps/misc.Tpo -c -o misc.o misc.cc
In file included from misc.cc:11:
./misc.h:36:17: warning: 'SHA1_Init' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
void init() { SHA1_Init(&ctx_); }
^
/usr/include/openssl/sha.h:121:5: note: 'SHA1_Init' has been explicitly marked deprecated here
int SHA1_Init(SHA_CTX *c) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
In file included from misc.cc:11:
./misc.h:37:44: warning: 'SHA1_Update' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
void update(const void *buf, size_t n) { SHA1_Update (&ctx_, buf, n); }
^
/usr/include/openssl/sha.h:122:5: note: 'SHA1_Update' has been explicitly marked deprecated here
int SHA1_Update(SHA_CTX *c, const void *data, size_t len) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
misc.cc:112:3: warning: 'SHA1_Final' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
SHA1_Final (resbuf, &ctx_);
^
/usr/include/openssl/sha.h:123:5: note: 'SHA1_Final' has been explicitly marked deprecated here
int SHA1_Final(unsigned char *md, SHA_CTX *c) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
3 warnings generated.
mv -f .deps/misc.Tpo .deps/misc.Po
g++ -DPACKAGE_NAME=\"muchsync\" -DPACKAGE_TARNAME=\"muchsync\" -DPACKAGE_VERSION=\"2\" -DPACKAGE_STRING=\"muchsync\ 2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"muchsync\" -DVERSION=\"2\" -DST_MTIM=st_mtimespec -I. -I/usr/local/Cellar/sqlite/3.8.10.1/include -I/usr/local/Cellar/xapian/1.2.19/include -g -O2 -std=c++11 -Wall -pthread -MT muchsync.o -MD -MP -MF .deps/muchsync.Tpo -c -o muchsync.o muchsync.cc
In file included from muchsync.cc:12:
./misc.h:36:17: warning: 'SHA1_Init' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
void init() { SHA1_Init(&ctx_); }
^
/usr/include/openssl/sha.h:121:5: note: 'SHA1_Init' has been explicitly marked deprecated here
int SHA1_Init(SHA_CTX *c) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
In file included from muchsync.cc:12:
./misc.h:37:44: warning: 'SHA1_Update' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
void update(const void *buf, size_t n) { SHA1_Update (&ctx_, buf, n); }
^
/usr/include/openssl/sha.h:122:5: note: 'SHA1_Update' has been explicitly marked deprecated here
int SHA1_Update(SHA_CTX *c, const void *data, size_t len) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
2 warnings generated.
mv -f .deps/muchsync.Tpo .deps/muchsync.Po
g++ -DPACKAGE_NAME=\"muchsync\" -DPACKAGE_TARNAME=\"muchsync\" -DPACKAGE_VERSION=\"2\" -DPACKAGE_STRING=\"muchsync\ 2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"muchsync\" -DVERSION=\"2\" -DST_MTIM=st_mtimespec -I. -I/usr/local/Cellar/sqlite/3.8.10.1/include -I/usr/local/Cellar/xapian/1.2.19/include -g -O2 -std=c++11 -Wall -pthread -MT notmuch_db.o -MD -MP -MF .deps/notmuch_db.Tpo -c -o notmuch_db.o notmuch_db.cc
notmuch_db.cc:237:51: warning: adding 'int' to a string does not append to the string [-Wstring-plus-int]
throw runtime_error ("notmuch exit status " + status);
~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~
notmuch_db.cc:237:51: note: use array indexing to silence this warning
throw runtime_error ("notmuch exit status " + status);
^
& [ ]
1 warning generated.
mv -f .deps/notmuch_db.Tpo .deps/notmuch_db.Po
g++ -DPACKAGE_NAME=\"muchsync\" -DPACKAGE_TARNAME=\"muchsync\" -DPACKAGE_VERSION=\"2\" -DPACKAGE_STRING=\"muchsync\ 2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"muchsync\" -DVERSION=\"2\" -DST_MTIM=st_mtimespec -I. -I/usr/local/Cellar/sqlite/3.8.10.1/include -I/usr/local/Cellar/xapian/1.2.19/include -g -O2 -std=c++11 -Wall -pthread -MT protocol.o -MD -MP -MF .deps/protocol.Tpo -c -o protocol.o protocol.cc
In file included from protocol.cc:18:
./misc.h:36:17: warning: 'SHA1_Init' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
void init() { SHA1_Init(&ctx_); }
^
/usr/include/openssl/sha.h:121:5: note: 'SHA1_Init' has been explicitly marked deprecated here
int SHA1_Init(SHA_CTX *c) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
In file included from protocol.cc:18:
./misc.h:37:44: warning: 'SHA1_Update' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
void update(const void *buf, size_t n) { SHA1_Update (&ctx_, buf, n); }
^
/usr/include/openssl/sha.h:122:5: note: 'SHA1_Update' has been explicitly marked deprecated here
int SHA1_Update(SHA_CTX *c, const void *data, size_t len) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
protocol.cc:90:7: warning: 'RAND_pseudo_bytes' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
if (RAND_pseudo_bytes ((unsigned char *) &v, sizeof (v)) == -1)
^
/usr/include/openssl/rand.h:105:6: note: 'RAND_pseudo_bytes' has been explicitly marked deprecated here
int RAND_pseudo_bytes(unsigned char *buf,int num) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
3 warnings generated.
mv -f .deps/protocol.Tpo .deps/protocol.Po
g++ -DPACKAGE_NAME=\"muchsync\" -DPACKAGE_TARNAME=\"muchsync\" -DPACKAGE_VERSION=\"2\" -DPACKAGE_STRING=\"muchsync\ 2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"muchsync\" -DVERSION=\"2\" -DST_MTIM=st_mtimespec -I. -I/usr/local/Cellar/sqlite/3.8.10.1/include -I/usr/local/Cellar/xapian/1.2.19/include -g -O2 -std=c++11 -Wall -pthread -MT sqlstmt.o -MD -MP -MF .deps/sqlstmt.Tpo -c -o sqlstmt.o sqlstmt.cc
mv -f .deps/sqlstmt.Tpo .deps/sqlstmt.Po
g++ -DPACKAGE_NAME=\"muchsync\" -DPACKAGE_TARNAME=\"muchsync\" -DPACKAGE_VERSION=\"2\" -DPACKAGE_STRING=\"muchsync\ 2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"muchsync\" -DVERSION=\"2\" -DST_MTIM=st_mtimespec -I. -I/usr/local/Cellar/sqlite/3.8.10.1/include -I/usr/local/Cellar/xapian/1.2.19/include -g -O2 -std=c++11 -Wall -pthread -MT sql_db.o -MD -MP -MF .deps/sql_db.Tpo -c -o sql_db.o sql_db.cc
In file included from sql_db.cc:11:
./misc.h:36:17: warning: 'SHA1_Init' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
void init() { SHA1_Init(&ctx_); }
^
/usr/include/openssl/sha.h:121:5: note: 'SHA1_Init' has been explicitly marked deprecated here
int SHA1_Init(SHA_CTX *c) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
In file included from sql_db.cc:11:
./misc.h:37:44: warning: 'SHA1_Update' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
void update(const void *buf, size_t n) { SHA1_Update (&ctx_, buf, n); }
^
/usr/include/openssl/sha.h:122:5: note: 'SHA1_Update' has been explicitly marked deprecated here
int SHA1_Update(SHA_CTX *c, const void *data, size_t len) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
sql_db.cc:72:7: warning: 'RAND_pseudo_bytes' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
if (RAND_pseudo_bytes ((unsigned char *) &self, sizeof (self)) == -1
^
/usr/include/openssl/rand.h:105:6: note: 'RAND_pseudo_bytes' has been explicitly marked deprecated here
int RAND_pseudo_bytes(unsigned char *buf,int num) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
3 warnings generated.
mv -f .deps/sql_db.Tpo .deps/sql_db.Po
g++ -DPACKAGE_NAME=\"muchsync\" -DPACKAGE_TARNAME=\"muchsync\" -DPACKAGE_VERSION=\"2\" -DPACKAGE_STRING=\"muchsync\ 2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"muchsync\" -DVERSION=\"2\" -DST_MTIM=st_mtimespec -I. -I/usr/local/Cellar/sqlite/3.8.10.1/include -I/usr/local/Cellar/xapian/1.2.19/include -g -O2 -std=c++11 -Wall -pthread -MT xapian_sync.o -MD -MP -MF .deps/xapian_sync.Tpo -c -o xapian_sync.o xapian_sync.cc
In file included from xapian_sync.cc:15:
./misc.h:36:17: warning: 'SHA1_Init' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
void init() { SHA1_Init(&ctx_); }
^
/usr/include/openssl/sha.h:121:5: note: 'SHA1_Init' has been explicitly marked deprecated here
int SHA1_Init(SHA_CTX *c) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
In file included from xapian_sync.cc:15:
./misc.h:37:44: warning: 'SHA1_Update' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
void update(const void *buf, size_t n) { SHA1_Update (&ctx_, buf, n); }
^
/usr/include/openssl/sha.h:122:5: note: 'SHA1_Update' has been explicitly marked deprecated here
int SHA1_Update(SHA_CTX *c, const void *data, size_t len) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
xapian_sync.cc:408:7: error: use of undeclared identifier 'fstatat'
if (fstatat(dfd, name.c_str(), &sb, 0)) {
^
xapian_sync.cc:429:7: error: use of undeclared identifier 'fstatat'
if (fstatat(dfd, name.c_str(), &sb, 0)) {
^
xapian_sync.cc:529:16: error: use of undeclared identifier 'fdopendir'; did you mean 'opendir'?
DIR *d = fdopendir(dfd);
^~~~~~~~~
opendir
/usr/include/dirent.h:104:6: note: 'opendir' declared here
DIR *opendir(const char *) __DARWIN_ALIAS_I(opendir);
^
xapian_sync.cc:529:26: error: cannot initialize a parameter of type 'const char *' with an lvalue of type 'int'
DIR *d = fdopendir(dfd);
^~~
/usr/include/dirent.h:104:26: note: passing argument to parameter here
DIR *opendir(const char *) __DARWIN_ALIAS_I(opendir);
^
2 warnings and 4 errors generated.
make: *** [xapian_sync.o] Error 1
Aug 16 18:19:18 ~/Downloads/.../muchsync-2$ ll
total 4676
drwxr-xr-x 45 ######## staff 1530 Aug 16 18:19 ./
drwxr-xr-x 4 ######## staff 136 Aug 16 18:12 ../
drwxr-xr-x 11 ######## staff 374 Aug 16 18:19 .deps/
-rw-r--r-- 1 ######## staff 15 May 29 04:15 AUTHORS
-rw-r--r-- 1 ######## staff 448 May 29 04:15 COPYING
-rw-r--r-- 1 ######## staff 0 May 29 04:15 ChangeLog
-rw-r--r-- 1 ######## staff 15752 Jun 11 00:36 INSTALL
-rw-r--r-- 1 ######## staff 28866 Aug 16 18:19 Makefile
-rw-r--r-- 1 ######## staff 683 Jun 11 00:43 Makefile.am
-rw-r--r-- 1 ######## staff 28899 Aug 16 16:05 Makefile.in
-rw-r--r-- 1 ######## staff 793 Aug 16 16:19 NEWS
-rw-r--r-- 1 ######## staff 1270 Aug 5 00:33 README
-rw-r--r-- 1 ######## staff 47850 Aug 16 16:05 aclocal.m4
-rw-r--r-- 1 ######## staff 2108 May 29 04:15 cleanup.h
-rw-r--r-- 1 ######## staff 16887 Aug 16 18:19 config.log
-rwxr-xr-x 1 ######## staff 29837 Aug 16 18:19 config.status*
-rwxr-xr-x 1 ######## staff 155174 Aug 16 16:05 configure*
-rw-r--r-- 1 ######## staff 1938 Aug 16 16:05 configure.ac
-rwxr-xr-x 1 ######## staff 23566 Jun 11 00:36 depcomp*
-rw-r--r-- 1 ######## staff 4704 Aug 5 02:28 infinibuf.cc
-rw-r--r-- 1 ######## staff 8720 May 29 04:15 infinibuf.h
-rw-r--r-- 1 ######## staff 145668 Aug 16 18:19 infinibuf.o
-rwxr-xr-x 1 ######## staff 14675 Jun 11 00:36 install-sh*
drwxr-xr-x 6 ######## staff 204 Aug 16 16:59 m4/
-rw-r--r-- 1 ######## staff 2879 Jun 10 23:40 misc.cc
-rw-r--r-- 1 ######## staff 1081 Jun 10 23:40 misc.h
-rw-r--r-- 1 ######## staff 173060 Aug 16 18:19 misc.o
-rwxr-xr-x 1 ######## staff 6872 Jun 11 00:36 missing*
-rw-r--r-- 1 ######## staff 14434 Aug 5 02:29 muchsync.1
-rw-r--r-- 1 ######## staff 13756 Aug 5 02:28 muchsync.1.md
-rw-r--r-- 1 ######## staff 11151 Jun 11 00:44 muchsync.cc
-rw-r--r-- 1 ######## staff 827 May 29 04:15 muchsync.h
-rw-r--r-- 1 ######## staff 614652 Aug 16 18:19 muchsync.o
-rw-r--r-- 1 ######## staff 6961 Aug 5 02:28 notmuch_db.cc
-rw-r--r-- 1 ######## staff 2380 Aug 5 02:28 notmuch_db.h
-rw-r--r-- 1 ######## staff 482828 Aug 16 18:19 notmuch_db.o
-rw-r--r-- 1 ######## staff 28900 Aug 5 02:28 protocol.cc
-rw-r--r-- 1 ######## staff 1615340 Aug 16 18:19 protocol.o
-rw-r--r-- 1 ######## staff 11156 May 29 04:15 sql_db.cc
-rw-r--r-- 1 ######## staff 4048 May 29 04:15 sql_db.h
-rw-r--r-- 1 ######## staff 995712 Aug 16 18:19 sql_db.o
-rw-r--r-- 1 ######## staff 2471 May 29 04:15 sqlstmt.cc
-rw-r--r-- 1 ######## staff 5236 Jun 11 00:41 sqlstmt.h
-rw-r--r-- 1 ######## staff 154684 Aug 16 18:19 sqlstmt.o
-rw-r--r-- 1 ######## staff 20074 Aug 16 16:20 xapian_sync.cc
Aug 16 18:19:42 ~/Downloads/.../muchsync-2$ make install
g++ -DPACKAGE_NAME=\"muchsync\" -DPACKAGE_TARNAME=\"muchsync\" -DPACKAGE_VERSION=\"2\" -DPACKAGE_STRING=\"muchsync\ 2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"muchsync\" -DVERSION=\"2\" -DST_MTIM=st_mtimespec -I. -I/usr/local/Cellar/sqlite/3.8.10.1/include -I/usr/local/Cellar/xapian/1.2.19/include -g -O2 -std=c++11 -Wall -pthread -MT xapian_sync.o -MD -MP -MF .deps/xapian_sync.Tpo -c -o xapian_sync.o xapian_sync.cc
In file included from xapian_sync.cc:15:
./misc.h:36:17: warning: 'SHA1_Init' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
void init() { SHA1_Init(&ctx_); }
^
/usr/include/openssl/sha.h:121:5: note: 'SHA1_Init' has been explicitly marked deprecated here
int SHA1_Init(SHA_CTX *c) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
In file included from xapian_sync.cc:15:
./misc.h:37:44: warning: 'SHA1_Update' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
void update(const void *buf, size_t n) { SHA1_Update (&ctx_, buf, n); }
^
/usr/include/openssl/sha.h:122:5: note: 'SHA1_Update' has been explicitly marked deprecated here
int SHA1_Update(SHA_CTX *c, const void *data, size_t len) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
xapian_sync.cc:408:7: error: use of undeclared identifier 'fstatat'
if (fstatat(dfd, name.c_str(), &sb, 0)) {
^
xapian_sync.cc:429:7: error: use of undeclared identifier 'fstatat'
if (fstatat(dfd, name.c_str(), &sb, 0)) {
^
xapian_sync.cc:529:16: error: use of undeclared identifier 'fdopendir'; did you mean 'opendir'?
DIR *d = fdopendir(dfd);
^~~~~~~~~
opendir
/usr/include/dirent.h:104:6: note: 'opendir' declared here
DIR *opendir(const char *) __DARWIN_ALIAS_I(opendir);
^
xapian_sync.cc:529:26: error: cannot initialize a parameter of type 'const char *' with an lvalue of type 'int'
DIR *d = fdopendir(dfd);
^~~
/usr/include/dirent.h:104:26: note: passing argument to parameter here
DIR *opendir(const char *) __DARWIN_ALIAS_I(opendir);
^
2 warnings and 4 errors generated.
make: *** [xapian_sync.o] Error 1
Aug 16 18:19:52 ~/Downloads/.../muchsync-2$
Aug 16 18:20:03 ~/Downloads/.../muchsync-2$ pwd
/Users/########/Downloads/muchsync/muchsync-2
Aug 16 18:20:03 ~/Downloads/.../muchsync-2$ ll ..
total 472
drwxr-xr-x 4 ######## staff 136 Aug 16 18:12 ./
drwx------+ 260 ######## staff 8840 Aug 16 18:12 ../
drwxr-xr-x 45 ######## staff 1530 Aug 16 18:19 muchsync-2/
-rw-r----- 1 ######## staff 481280 Aug 16 18:11 muchsync-2rc1.tar.gz
Aug 16 18:20:07 ~/Downloads/.../muchsync-2$
Aug 16 18:20:18 ~/Downloads/.../muchsync-2$
Aug 16 18:20:18 ~/Downloads/.../muchsync-2$ sw_vers
ProductName: Mac OS X
ProductVersion: 10.9.5
BuildVersion: 13F1077
Aug 16 18:20:20 ~/Downloads/.../muchsync-2$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment